Apply the following changes to the script:
change line 31 to:
mkvinfo_track_number_re = re.compile('\+ Track number: .* \(track ID for mkvmerge & mkvextract: ([0-9]+)\)')
change line 35 to:
re.compile('\+ Default duration: .*ms \((.*) frames\/fields per second for a video track\)')
Search Criteria
Package Details: mkv2mp4-svn 11-3
Package Actions
- View PKGBUILD
- Download tarball
- Search wiki
- Flagged out-of-date (2012-02-16)
| Package Base: | mkv2mp4-svn |
|---|---|
| Description: | Remux mkv files to mp4 files compatible with various standalone players |
| Upstream URL: | http://mkv2mp4.googlecode.com |
| Category: | multimedia |
| Licenses: | |
| Submitter: | oneonfire |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 18 |
| First Submitted: | 2010-01-30 11:45 |
| Last Updated: | 2011-10-11 08:57 |
Latest Comments
Comment by biloky
Anonymous comment
not working with '#!/usr/bin/python2'
Input file properties:
Video: h264, fps
Traceback (most recent call last):
File "/usr/bin/mkv2mp4", line 447, in <module>
main(sys.argv[1:])
File "/usr/bin/mkv2mp4", line 392, in main
mkv_file.get_info()
File "/usr/bin/mkv2mp4", line 129, in get_info
(self.audio_type, self.audio_channels)
AttributeError: InputFile instance has no attribute 'audio_channels'
Comment by solstice
it trhows an execption:
Input file properties:
Video: h264, fps
Traceback (most recent call last):
File "/usr/bin/mkv2mp4", line 447, in <module>
main(sys.argv[1:])
File "/usr/bin/mkv2mp4", line 392, in main
mkv_file.get_info()
File "/usr/bin/mkv2mp4", line 129, in get_info
(self.audio_type, self.audio_channels)
AttributeError: InputFile instance has no attribute 'audio_channels'
the mkv seems good to me, so ?
Anonymous comment
This is broken now that Arch uses python 3 by default. You need to replace the dependency with python2, and patch the shebang line at the top of the script to
#!/usr/bin/python2