forked from gavinbeatty/mkvtomp4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplifications but i'm not sure it works
- change license to mit - no more .in files, and .py always has __version__ - code is vaguely better, but not by much...
- Loading branch information
Gavin Beatty
committed
Dec 19, 2012
1 parent
5879f45
commit 3b6d479
Showing
7 changed files
with
367 additions
and
1,165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
mkvtomp4 | ||
======== | ||
Gavin Beatty <[email protected]> | ||
|
||
<http://code.google.com/p/mkvtomp4/> | ||
|
||
mkvtomp4: Uses mpeg4ip or GPAC's MP4Box, mkvtoolnix and ffmpeg to convert | ||
troublesome mkv files to mp4. | ||
The conversion does not re-encode the video and only re-encodes the audio if | ||
it doesn't use AAC codec (one can override this behaviour using | ||
`--audio-codec`). | ||
They will be playable on the Sony PS3. | ||
|
||
Check the manual in `doc/mkvtomp4.1.txt`. | ||
|
||
|
||
Dependencies | ||
------------ | ||
|
||
Tools: | ||
* mkvtoolnix | ||
* mpeg4ip or GPAC's MP4Box | ||
* ffmpeg | ||
|
||
On Linux, use your package manager to install. | ||
On Mac OS X, use MacPorts to install. | ||
On Windows, go to the tools' individual websites and find windows binaries. | ||
|
||
Everything else is written using only fully cross-platform python, except: | ||
|
||
* pipes module. This means we depend on POSIX /bin/sh for the time being. | ||
|
||
If you want to help eliminate this dependency, help solve issue 0001. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,9 +114,24 @@ Please report all bugs and wishes to <[email protected]> | |
|
||
COPYING | ||
------- | ||
mkvtomp4 Copyright \(C) 2010 Gavin Beatty, <[email protected]> | ||
|
||
Free use of this software is granted under the terms of the GNU General Public | ||
License version 3, or at your option, any later version. (GPLv3+) | ||
mkvtomp4 Copyright \(c) 2012 Gavin Beatty, <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
|
Oops, something went wrong.