I have a svcd file which has video (mpeg2), audio and there is also a file for subtitles.
After I separate the video and the audio (using bbDemux) how would I convert the audio to vcd (not svcd) standard. At this point I only wnt to manipulate the audio. After the audio gets changed I would then like to joint the 2 (MMT works great for joining). Finally I would like to add a file for subtitles.
philip
+ Reply to Thread
Results 1 to 4 of 4
-
-
The standard says:
VCD 1.1 must cbr mpeg-1, layer II (mp2) at 224 kbps
VCD 2.0 must be mp2 at 128, 192, 224 or 384 kbps
Mplex will mux in sub-title tracks also, I don't know if it's been successfuly done on mac yet. -
If I first just want to manipulate the mpa file by turning it into aiff/wave/...and then use MMT to join the fixed audio file together what would I use? That is, what program will manipulate the mma file in order to change it to meet the standards quoted. I know you can use Mplex to handle both the audio and video at once but is there nothing that will just handle the audio alone ? Sorry about all this. It's all seems much more complex than I would have imagined.
philip
Originally Posted by Ross -
Convert MP2 to AIFF
This is very basic, but works. Copy and paste into Script Editor then run. OK to change AIFF to WAVE at bottom of script.
--start script
set this_mp2 to choose file with prompt "Choose MP2 file ot convert:"
tell application "iTunes"
convert this_mp2
quit
end tell
set this_mp3 to choose file with prompt "Choose the new MP3 file: Home/Documents/iTunes/iTunes Music/Unknown Artist/Unknown Album"
set the new_file to choose file name with prompt "Enter a name and choose a location for the new AIFF file:"
tell application "QuickTime Player"
open this_mp3
export movie 1 to new_file as AIFF
quit
end tell
--end script
Similar Threads
-
MP2 audio with LAME?
By RogerTango in forum AudioReplies: 7Last Post: 3rd Nov 2009, 22:28 -
Extract audio from MP2 and more
By txl in forum AudioReplies: 7Last Post: 30th Jul 2009, 06:49 -
Need help with adding titles, credits and music to an avi
By dpoon in forum Newbie / General discussionsReplies: 1Last Post: 4th Feb 2008, 14:06 -
adding sub titles
By dickdb in forum SVCD2DVD & VOB2MPGReplies: 4Last Post: 13th Dec 2007, 18:30 -
Adding animated titles
By SearchQuality in forum EditingReplies: 8Last Post: 30th Nov 2007, 18:27