Serato Video General Discussion

Talk about Serato Video and Video-SL.

avi fix anyone?

ralph 2:27 AM - 4 March, 2008
Haven't been on here in awhile...i still have problems playing avi files....there's video, but, gargled and choppy sound.

anyone figure out a fix yet, anyone?
nobspangle 8:27 AM - 4 March, 2008
Best bet is to not use avi, use mp4 instead.
Other workarounds involve uncompressing the audio side of the avi so you have xvid+wav audio.
a-swift 11:17 PM - 4 March, 2008
or creating Xvid+wav audio direct from vob files.
ralph 7:01 AM - 5 March, 2008
ok. I do use mp4's but, i just have some older avi vids that i was hoping i didn't have to convert to mp4's....btw...anyone have any good avi to mp4 converters they recommend?...for mac.
nobspangle 8:17 AM - 5 March, 2008
Quote:
ok. I do use mp4's but, i just have some older avi vids that i was hoping i didn't have to convert to mp4's....btw...anyone have any good avi to mp4 converters they recommend?...for mac.

ffmpeg.

I haven't tried it but you could probably do

ffmpeg -i avifilename.avi -vcodec copy -acodec copy mp4filename.mp4

Which should give you an mp4 file without any loss of quality. Try it with one file, if it works put all your avi in the same directory then run.

for $i in *.avi; do ffmpeg -i "$i" -vcodec copy -acodec copy `basename "$i" .avi`.mp4

That will run through all the files and convert them.
ralph 12:55 AM - 6 March, 2008
...what?

Sorry dude, i'm not the best with computers.....i'll try and figure out what you said.
a-swift 6:48 AM - 6 March, 2008
it's a "for" loop meant to be run from the command line. you would use the "Terminal" application on a Mac to do this with. It's in the utilities folder. You should check out Mac OSX commands for dummies (no offense, I'm being serious). there are a lot of cool things you can do from the command line that you don't have available in the GUI on a Mac. It's actually a VERY full featured command line environment on Macs, unlike that crappy pacific nw os.
nobspangle 8:29 AM - 6 March, 2008
You could try using ffmpegX www.ffmpegx.com set the video and audio to "passthrough" see what it does.
ralph 11:39 AM - 6 March, 2008
thanks guys....i'll let you know how it goes.