Is there a way to do progressive download or fast start as it is referred to by apple, via ffmpegx? Specifically, I am looking to do .mp4 videos or .mov with progressive download.
I don't find much info about it in the archive, but maybe I am missing something.
Thanks
Results 1 to 4 of 4
-
Or use mp4box with the hint command,
mp4box -hint yourfile.mp4
I have seen some mp4box binaries for mac os x, like http://www.tkn.tu-berlin.de/research/evalvid/EvalVid/mp4box-mac.tar.bz2 or google for it.
-
Thanks for the tip. I don't quite understand how the application is used, but I can probably figure it out with some tinkering. I am a command line noob.
I just found some mention online of qt-faststart which is supposedly a tool that comes with ffmpegx, but I can not find any simple instructions on how it is used or where I locate the tool to use it.
-
Code:
mp4box -hint yourfile.mp4
Code:#!/bin/bash for i in $* do ~/Desktop/MP4Box -add ${i}#video final_movie.mp4 || continue ~/Desktop/MP4Box -add ${i}#audio final_movie.mp4 || continue mv final_movie.mp4 ${i} mv ${i} fixed/ done
i keep fix.sh in a directory called "fix" which contains a subdirectory called "fixed"
in terminal:
Code:cd /Users/yourname/Movies/fix ./fix.sh *.mp4
Similar Threads
-
AVStoDVD does not start... says "VB6 Common Controls not found!"
By granturissimus in forum Newbie / General discussionsReplies: 2Last Post: 12th Jan 2011, 07:15 -
virtual dub "non-zero start position" error
By DaneClark in forum EditingReplies: 1Last Post: 17th Aug 2009, 20:24 -
Please explain "Progressive Scan DVD menus"
By schematic2 in forum Authoring (DVD)Replies: 1Last Post: 2nd Oct 2008, 19:25 -
"Virgin" music video maker with Win98SE - Where do I start???
By Missy316 in forum Newbie / General discussionsReplies: 10Last Post: 8th Dec 2007, 10:59 -
Clonedvd error"invalid block start code"
By demonwarrior in forum Newbie / General discussionsReplies: 2Last Post: 6th Aug 2007, 05:01