Codec for MPEG2 file on 64 bit Windows 7 system

0

1

Can someone point me to a 64-bit MPEG2 codec for Windows 7? I am trying to read some big MPEG2 files using MATLAB's VideoReader. I get an error saying I should install a MPEG-2 codec, but I haven't been able to find a 64-bit codec for Windows 7.

KAE

Posted 2012-09-27T15:14:11.370

Reputation: 1 467

Answers

1

What about converting the video to another format (or would that potentially change the pixels too much). If this would be an option for you, you could use ffmpeg cli: http://www.videohelp.com/tools/ffmpeg It is very fast and easy to convert various video files, while preserving the original quality.

Vincent

Posted 2012-09-27T15:14:11.370

Reputation: 930

That is a great suggestion. Quality isn't too important - I just need to see the orientation of the main object in the video. I found this example of how to convert MPEG-2 to MPEG-1 which I hope will work! http://ffmpeg-users.933282.n4.nabble.com/convert-mpeg2-to-mpeg1-td938360.html

– KAE – 2012-09-28T14:40:01.893

Wow, that worked like a charm. You solved a week long problem for me. Turned out the command format should be, ffmpeg -i myMpeg2File.mpg -target ntsc-vcd -y myMpeg1File.mpg – KAE – 2012-09-28T15:56:08.433

That's nice to hear! Gl! – Vincent – 2012-09-28T18:04:22.083