How can I encode a VRO file to an AVI file

5

1

I have a Canon hand held camera that writes video to a mini-dvd disc. The disc contains a file with a VRO extension which ffmpeg was quite happy to process into an AVI that I could then load into Kdenlive for editing. However, when playing the AVI using Ubuntu's standard media play, the audio was badly out of sync with the image. Also the video failed to play under Windows using media player.

So, the question is, what options would best convert the VRO file without losing quality into something that can be edited using kdenlive, plays in the standard Ubuntu media player without audio syncing problems and plays under windows too.

Skizz

Posted 2009-07-22T22:07:06.437

Reputation: 992

Talking to a collegue, it seems the sync problem might be due to errors in the audio stream confusing the conversion process. – Skizz – 2009-07-23T21:29:19.207

I would advise to change the title to something like "How can I encode a VRO file to a AVI file?" – Davy Landman – 2009-07-24T18:27:47.537

Good call Davy - have done that. – Skizz – 2009-08-03T10:29:12.077

@Davy: Transcode rather than encode would have been more correct. – paradroid – 2010-10-13T05:29:12.550

Answers

6

VRO is the DVD Video Recording Format, it seems to be a wrapper around regular VOB files, according to this topic you can use the open-source program dvd-vr to extract those VOB files from the VRO files. After that you can just use your regular DVD encoding software to convert it to a smaller format.

Davy Landman

Posted 2009-07-22T22:07:06.437

Reputation: 4 194

I've just downloaded dvd-vr and it splits the VRO into VOBs easily enough (assuming one if OK using make!). The VOBs load into kdenlive without problem. – Skizz – 2009-07-23T21:28:21.987

0

I would recommend using a command-line utility like transcode, which makes use of ffmpeg but has an easier interface. There are some good examples to follow on the examples page.

Nick Haddad

Posted 2009-07-22T22:07:06.437

Reputation: 765