README.md 4.8 KB
Newer Older
D
Dylan Coakley 已提交
1
## Copyright
2

D
Dylan Coakley 已提交
3
 Copyright (c) 2008-2018 OpenShot Studios, LLC
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 (http://www.openshotstudios.com). This file is part of
 OpenShot Video Editor (http://www.openshot.org), an open-source project
 dedicated to delivering high quality video editing and animation solutions
 to the world.

 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.

 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.

 You should have received a copy of the GNU General Public License
 along with OpenShot Library.  If not, see <http://www.gnu.org/licenses/>.

D
Dylan Coakley 已提交
22
## Instructions
23 24 25 26 27 28

OpenShot Video Editor 2.0 supports Linux, Mac, and Windows. But due to 
the many dependencies required to run OpenShot, we recommend using an 
installer for your operating system. Please visit 
http://www.openshot.org/download/ to find your correct installer.

D
Dylan Coakley 已提交
29
## Documentation
30

A
Andrea Gelmini 已提交
31
Documentation for OpenShot 2.0 can be generated with Doxygen, a popular
32
command-line application for scanning source code and generating readable
A
Andrea Gelmini 已提交
33
documentation. OpenShot contains a Doxygen input file (Doxyfile.in), but
34 35 36 37 38
you must first install the following Python filter for Doxygen: doxypy.
Then, run the following command:

$ doxygen Doxyfile.in

D
Dylan Coakley 已提交
39
## Dependencies
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

Although installers are much easier to use, if you must build from 
source, here are some tips: 

OpenShot 2.0 is programmed in Python, and thus does not need
to be compiled to run.  However, be sure you have the following 
dependencies in order to run OpenShot successfully: 

1) Python 3.0+ (http://www.python.org)
2) PyQt5 (http://www.riverbankcomputing.co.uk/software/pyqt/download5)
3) libopenshot: OpenShot Library (http://www.openshot.org)
4) FFmpeg or Libav (http://www.ffmpeg.org/ or http://libav.org/)
5) GCC build tools (or MinGW on Windows)

To run OpenShot from the command line, use the following syntax:
(be sure the change the path to match the install location of OpenShot)

57 58
$ cd /home/USER/openshot_qt
$ python3 src/launch.py
59

D
Dylan Coakley 已提交
60
## How to install
61 62 63

If you would like to install OpenShot, use this command:

64
$ sudo python3 setup.py install
65 66 67 68 69 70

Installing OpenShot using this command does a few extra things that
the build wizard doesn't do.  It adds MIME Types, adds an icon to your
Application menu, registers icons, adds a /usr/bin/openshot command, and
copies all the code files to the /site-packages/ folder.

D
Dylan Coakley 已提交
71
## Tutorial
72 73 74

Here is a tutorial of the current development features:

75
	Do you have a help manual?
76 77
		1) Yes, go to http://www.openshotusers.com/help/en/

78
	How do I add media to my project?
79 80 81 82
		1) Drag and drop videos or music files from gnome into the "Project Files" tree.
		2) Click the File / Import Files... menu
		3) Click the "Import Files" icon on the toolbar (at the top of the screen)
		
83
	How do I add media to my timeline?
84 85
		1) Click on any file in your "Project Files" tree, and drag it onto the timeline (at the bottom of the screen)
		
86
	How do I position clips on my timeline?
87 88 89
		1) Simply click on any clips already on the timeline, and drag them to their new location
		2) Use the magnet icon to have your clips magically stick to their closest neighbor clips.
		
90
	How do I trim / un-trim clips
91
		1) Click and drag the edge of the clip to it's new location.
92

93
	The audio / video is out of sync. What can I do?
94 95 96 97 98 99 100 101 102 103 104
		1) This is usually related to a bug in libopenshot or FFmpeg.  To resolve this, re-encode the video using the 
		   ffmpeg command line tool.
		   
		2) Here is an example command to convert a folder full of Canon MTS files to MP4:
		   $ find '/home/jonathan/Desktop/Caveman Movie/Videos' -iname "*.MTS" -exec ffmpeg -i {} -acodec libfaac -ab 128k -ac 2 -r 60 -vcodec mpeg4 -f mp4 -y -sameq {}.mp4 \;

		3) Usually the reason the A/V are out of sync is related to the frame rate (i.e. the -r parameter on the ffmpeg command).
		   Try a variety of frame rates and OpenShot project types to find one that doesn't have A/V sync issues.
		   Some common rates are:  -r 29.97  -r 25  -r 30  -r 60


D
Dylan Coakley 已提交
105
## Websites
106

107 108 109 110 111
- http://www.openshot.org/  (Official website and blog)
- http://launchpad.net/openshot/ (source code, bug tracker and translations)
- http://freshmeat.net/projects/openshot-video-editor/
- https://sourceforge.net/projects/openshotvideo/
- https://www.ohloh.net/p/openshot-video-editor/
112

D
Dylan Coakley 已提交
113
## Report a bug
114

115
You can add a bug here on GitHub but make sure to add plenty of detail about the issue and logs if possible.
116

D
Dylan Coakley 已提交
117
## Translations
118 119 120

https://translations.launchpad.net/openshot

D
Dylan Coakley 已提交
121
## Ask a question  
122

123
You can ask a question here on GitHub if you need/want to.