# shotcut **Repository Path**: cloudDeviceService/shotcut ## Basic Information - **Project Name**: shotcut - **Description**: Shotcut 是一款自由、开源、跨平台的视频编辑软件 - **Primary Language**: C/C++ - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/shotcut - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 23 - **Created**: 2021-05-21 - **Last Updated**: 2021-05-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [](https://github.com/mltframework/shotcut/actions?query=workflow%3Abuild-shotcut-linux+is%3Acompleted+branch%3Amaster) [](https://github.com/mltframework/shotcut/actions?query=workflow%3Abuild-shotcut-macos+is%3Acompleted+branch%3Amaster) [](https://github.com/mltframework/shotcut/actions?query=workflow%3Abuild-shotcut-windows+is%3Acompleted+branch%3Amaster) # Shotcut - a free, open source, cross-platform **video editor**
> : contributor
## Dependencies
Shotcut's direct (linked or hard runtime) dependencies are:
- [MLT](https://www.mltframework.org/): multimedia authoring framework
- [Qt 5](https://www.qt.io/): application and UI framework
- [FFmpeg](https://www.ffmpeg.org/): multimedia format and codec libraries
- [Frei0r](https://www.dyne.org/software/frei0r/): video plugins
- [SDL](http://www.libsdl.org/): cross-platform audio playback
See https://shotcut.org/credits/ for a more complete list including indirect
and bundled dependencies.
## Licence
GPLv3. See [COPYING](COPYING).
## How to build
**Warning**: building shotcut should only be reserved to beta testers or contributors who know what they are doing.
### Qt Creator
The fastest way to build and try Shotcut development version is probably using [Qt Creator](https://www.qt.io/download#qt-creator).
To make this easier, we provide [SDKs](https://shotcut.org/notes/) on the web site with each release that includes
Shotcut and all of its dependencies. These SDK pages also include setup instructions and tips on how to compile
MLT and other dependencies after updating.
### From command line
First, check dependencies are satisfied and various paths correctly set to find different libraries and include files (Qt 5, MLT, frei0r and so forth).
Build `Makefile`:
```
qmake PREFIX=/usr/local/
```
Compile `shotcut`:
```
make -j8
make install
```
If you do not `make install` Shotcut will fail when you run it because it cannot locate its QML
files. If you want to run `shotcut` from a build folder without installing you can
make a symbolic link to the `qml` folder. It depends on where you build folder is, but assuming it
is a sibling of the source tree folder:
```
cd build
mkdir -p share/shotcut
cd share/shotcut
ln -s ../../../shotcut/src/qml
```
## Translation
If you want to translate Shotcut to another language, please use [Transifex](https://www.transifex.com/ddennedy/shotcut/).