Package Details: mkv2mp4-svn 11-3

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: GPL3
Submitter: oneonfire
Maintainer: None
Last Packager: None
Votes: 18
First Submitted: 2010-01-30 11:45
Last Updated: 2011-10-11 08:57

Dependencies (4)

Required by (0)

Sources

Latest Comments

Comment by biloky

2012-08-19 14:44

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\)')

Anonymous comment

2012-02-16 14:31

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

2012-02-06 17:25

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

2010-10-20 09:21

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