Convert mkv to mp4

sindomaker3403

New Member
YetiShare User
Dec 29, 2013
39
0
0
I've tried to convert mkv files to mp4 but there seems to be some miss configuration, after converting, the files growing larger in size than originally 600MB after convert become 1.2GB, then the sound of the video is also reduced, anyone know how to fix it?
 

jaredesguerra4757

New Member
YetiShare User
Feb 13, 2015
7
0
0
Mkv and Mp4 have the same files inside a different container , so converting from one to another does not make sense.

If you are comfortable with writing your own code , have a look at this - http://askubuntu.com/questions/396883/how-to-simply-convert-video-files-i-e-mkv-to-mp4

I should point , you will most likely not get file of a smaller size by coverting from mkv to mp4.
 

sindomaker3403

New Member
YetiShare User
Dec 29, 2013
39
0
0
thank you for your reply but how to implement this code to yetishare script.

Code:
 ffmpeg -i LostInTranslation.mkv -vcodec copy -acodec copy LostInTranslation.mp4
Code:
for i in $(ls *mkv); do ffmpeg -i $i -vcodec copy -acodec copy $i.mp4; done;