user1888249
user1888249

Reputation:

Convert H264 encoded video to MJPEG

I am having an issue converting some H264 encoded video to MJPEG format (contained in AVI), the video is a single video track and has no audio.

I have tried using avconv with the following command avconv -i test_5.mp4 -vcodec mjpeg -q 1 -r 30 out.avi, which results in a video which plays back far too fast.

I have also tried using Handbrake, however this produced an unplayable video.

The H264 video is captured with the raspivid utility on the Raspberry Pi at 30 FPS.

Upvotes: 3

Views: 6318

Answers (1)

BeLi
BeLi

Reputation: 86

I think you can get it done using ffmpeg instead of avconv (libav), you must download a ffmpeg binary package from here or compile yourself from sources, then check out this howto

Upvotes: 0

Related Questions