Re: [Vnc2swf-users] limit exceeded?
Status: Alpha
Brought to you by:
euske
From: Yusuke S. <yu...@cs...> - 2006-02-10 01:26:10
|
Hi Albert, Albert Chang <alb...@co...> wrote: > Hi, > > I used pyvnc2swf to record a video tutorial. Initially it was too long > (1 hour), so I split it up into 4 chapters, and decided I could cut down > on the time by adding audio to it instead of using text. However, when > I did this: > > edit.py -o Chapter1.swf -a Raw1.mp3 Raw1.swf > (snip) > > So then I decided to split the mp3 file into 3 files (each 3-5 minutes > long). I ran this: No, you don't have to split the mp3 file. Instead, you could limit the frames to output into one file. Try: $ edit.py -f0-10000 -o Chapter1-1.swf -a Raw1.mp3 Raw1.swf $ edit.py -f10000-20000 -o Chapter1-2.swf -a Raw1.mp3 Raw1.swf $ edit.py -f20000-30000 -o Chapter1-3.swf -a Raw1.mp3 Raw1.swf ... Maybe creating some simple split utility in future might be good. Yusuke |