2024-02-11 14:55:49 -06:00
# OpenShot Video Editor
2019-02-07 18:07:38 -06:00
OpenShot Video Editor is an award-winning free and open-source video editor
for Linux, Mac, and Windows, and is dedicated to delivering high quality
video editing and animation solutions to the world.
2014-01-13 17:18:36 -06:00
2021-03-31 18:39:41 -04:00
## Build Status
2024-12-21 17:22:20 -06:00
[](https://github.com/OpenShot/openshot-qt/actions/workflows/ci.yml)
[](https://github.com/OpenShot/libopenshot/actions/workflows/ci.yml)
[](https://github.com/OpenShot/libopenshot-audio/actions/workflows/ci.yml)

2021-03-31 18:39:41 -04:00
2019-02-08 16:54:22 -06:00
## Features
* Cross-platform (Linux, Mac, and Windows)
* Support for many video, audio, and image formats (based on FFmpeg)
* Powerful curve-based Key frame animations
* Desktop integration (drag and drop support)
* Unlimited tracks / layers
* Clip resizing, scaling, trimming, snapping, rotation, and cutting
* Video transitions with real-time previews
* Compositing, image overlays, watermarks
* Title templates, title creation, sub-titles
* 2D animation support (image sequences)
* 3D animated titles (and effects)
* SVG friendly, to create and include vector titles and credits
* Scrolling motion picture credits
* Advanced Timeline (including Drag & drop, scrolling, panning, zooming, and snapping)
* Frame accuracy (step through each frame of video)
* Time-mapping and speed changes on clips (slow/fast, forward/backward, etc...)
* Audio mixing and editing
* Digital video effects, including brightness, gamma, hue, greyscale, chroma key, and many more!
2019-04-18 20:00:39 -05:00
* Experimental hardware encoding and decoding (VA-API, NVDEC, D3D9, D3D11, VTB)
2019-05-25 17:14:46 -05:00
* Import & Export widely supported formats (EDL, XML)
* Render videos in many codecs and formats (based on FFmpeg)
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
## Getting Started
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
The quickest way to get started using OpenShot is to download one of
our pre-built installers. On our download page, click the **Daily Builds **
button to view the latest, experimental builds, which are created for each
new commit to this repo.
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
https://www.openshot.org/download/
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
## Tutorial
Watch the official [step-by-step video tutorial ](https://www.youtube.com/watch?list=PLymupH2aoNQNezYzv2lhSwvoyZgLp1Q0T&v=1k-ISfd-YBE ), or read the official [user-guide ](https://www.openshot.org/user-guide/ ):
## Developers
Are you interested in becoming more involved in the development of
OpenShot? Build exciting new features, fix bugs, make friends, and become a hero!
Please read the [step-by-step ](https://github.com/OpenShot/openshot-qt/wiki/Become-a-Developer )
instructions for getting source code, configuring dependencies, and building OpenShot.
2014-01-13 17:18:36 -06:00
2018-04-14 18:11:52 +00:00
## Documentation
2014-01-13 23:09:51 -06:00
2019-02-07 18:07:38 -06:00
Beautiful HTML documentation can be generated using Sphinx.
2014-01-13 23:09:51 -06:00
2019-12-25 04:54:45 -05:00
```sh
2019-02-07 18:07:38 -06:00
cd doc
make html
```
2019-09-29 17:34:40 -04:00
The documentation for the most recent release can be viewed online at [openshot.org/user-guide ](https://www.openshot.org/user-guide/ ).
2019-02-07 18:07:38 -06:00
## Report a bug
Please report bugs using the official [Report a Bug ](https://www.openshot.org/issues/new/ )
feature on our website. This walks you through the bug reporting process, and helps
to create a high-quality bug report for the OpenShot community.
Or you can report a new issue directly on GitHub:
https://github.com/OpenShot/openshot-qt/issues
## Translations
Translating OpenShot into other languages is very easy! Please read the [step-by-step ](https://github.com/OpenShot/openshot-qt/wiki/Become-a-Translator ) instructions or login to LaunchPad and get started.
All you need is a web browser.
2019-02-08 16:54:22 -06:00
* Application Translations: https://translations.launchpad.net/openshot/2.0/+translations
* Website Translations: https://translations.launchpad.net/openshot/website/+pots/django
2014-01-13 23:09:51 -06:00
2018-04-14 18:11:52 +00:00
## Dependencies
2014-01-13 17:18:36 -06:00
Although installers are much easier to use, if you must build from
source, here are some tips:
2019-02-07 18:07:38 -06:00
OpenShot is programmed in Python (version 3+), and thus does not need
to be compiled to run. However, be sure you have the following
2014-01-13 17:18:36 -06:00
dependencies in order to run OpenShot successfully:
2019-02-07 18:07:38 -06:00
* Python 3.0+ (http://www.python.org)
* PyQt5 (http://www.riverbankcomputing.co.uk/software/pyqt/download5)
* libopenshot: OpenShot Library (https://github.com/OpenShot/libopenshot)
* libopenshot-audio: OpenShot Audio Library (https://github.com/OpenShot/libopenshot-audio)
* FFmpeg or Libav (http://www.ffmpeg.org/ or http://libav.org/)
* GCC build tools (or MinGW on Windows)
## Launch
2014-01-13 17:18:36 -06:00
2019-12-25 04:54:45 -05:00
To run OpenShot from the command line with an installed `libopenshot` ,
use the following syntax:
2019-02-07 18:07:38 -06:00
(be sure the change the path to match the install or repo location
of openshot-qt)
2014-01-13 17:18:36 -06:00
2019-12-25 04:54:45 -05:00
```sh
cd [openshot-qt folder]
python3 src/launch.py
```
To run with a version of `libopenshot` built from source but not installed,
set `PYTHONPATH` to the location of the compiled Python bindings. e.g.:
```sh
cd [libopenshot folder]
2021-06-20 22:11:52 -04:00
cmake -B build -S . [options]
cmake --build build
2019-12-25 04:54:45 -05:00
cd [openshot-qt folder]
2021-06-20 22:11:52 -04:00
PYTHONPATH=[libopenshot folder]/build/bindings/python \
2019-12-25 04:54:45 -05:00
python3 src/launch.py
```
2014-01-13 17:18:36 -06:00
2018-04-14 18:11:52 +00:00
## Websites
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
- https://www.openshot.org/ (Official website and blog)
2018-04-30 15:00:59 +01:00
- https://github.com/OpenShot/openshot-qt (source code and issue tracker)
2019-02-07 18:07:38 -06:00
- https://github.com/OpenShot/libopenshot-audio (source code for audio library)
- https://github.com/OpenShot/libopenshot (source code for video library)
- https://launchpad.net/openshot/
2014-01-13 17:18:36 -06:00
2022-12-19 17:09:51 -06:00
### Copyright & License
2014-01-13 17:18:36 -06:00
2022-12-19 17:09:51 -06:00
Copyright (c) 2008-2022 OpenShot Studios, LLC. This file is part of
2019-02-07 18:07:38 -06:00
OpenShot Video Editor (https://www.openshot.org), an open-source project
dedicated to delivering high quality video editing and animation solutions
to the world.
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
OpenShot Video Editor is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
OpenShot Video Editor is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2014-01-13 17:18:36 -06:00
2019-02-07 18:07:38 -06:00
You should have received a copy of the GNU General Public License
along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.