Page: 1 | Rating: Unrated [0] |
Audio Extractors
Good [+1]Toggle ReplyLink» Termina replied on Sat Feb 28, 2009 @ 12:13pm |
Does anybody know any good programs for extracting audio from movies? (DVDs, .AVI, etc.) | |
I'm feeling happiness in slavery right now.. |
Good [+1]Toggle ReplyLink» Nathan replied on Sat Feb 28, 2009 @ 12:25pm |
yeah, i'd like to know too :)
i had a really good one, but lost it when my 'puter went haywire, now i can't remember the name of it... | |
I'm feeling you up right now.. |
Good [+1]Toggle ReplyLink» cutterhead replied on Sat Feb 28, 2009 @ 12:51pm |
and flash too ?
... dunno about flash video rips since i downmix them analog , but for the rest linux has a great tool called , mplay or mplayer . if you lookup some scrips around and you get the codec required (mpeg or flac etc..) then you will be able to decode / reencode all known media types ( just not shure about quicktime and flash but im shure you could use an alltoavi and then redo the transcode. so mplayer is not just a player , its a rencoding tool, all-to-all even if its audio&video-to-justaudio this is what i use to batch recode entiredatabases unattended. i had more success under linux finding good & clean & efficient code than just a woking , could be serialed proprietary program. all the all-to-mpg i found in windows were more shit that anything else. especially batch mp3 encoders. | |
I'm feeling 4hz even if you dont right now.. |
Good [+1]Toggle ReplyLink» El_Presidente replied on Sat Feb 28, 2009 @ 1:41pm |
adobe audition. You can simply open the video file with it. or basically any video converter "wizards" | |
I'm feeling tipsy for prez 2009 right now.. |
Good [+1]Toggle ReplyLink» cutterhead replied on Sat Feb 28, 2009 @ 1:45pm |
i have audition , never realised it could open video, but i hate so much that program i prefer sripting a linux batch file and not looking around at pretty buttons.
...and i hate linux , (not bsd) converting 4 gigabyte + unattended = priceless. | |
I'm feeling 4hz even if you dont right now.. |
Good [+1]Toggle ReplyLink» ApR1zM replied on Sat Feb 28, 2009 @ 1:51pm |
virtualDub in yo face ftw pis toute les autres conneries que les jeunes disent | |
I'm feeling analyzing charts right now.. |
Good [+1]Toggle ReplyLink» Mutante replied on Sat Feb 28, 2009 @ 4:23pm |
Good [+1]Toggle ReplyLink» MolocH replied on Mon Mar 2, 2009 @ 10:56am |
Good [+1]Toggle ReplyLink» Samwise replied on Mon Mar 2, 2009 @ 12:28pm |
try this one.
it converts anything into any format [ www.download.com ] really nice all-in-one application, i must say =) | |
I'm feeling poutinecore!! right now.. |
Good [+1]Toggle ReplyLink» Nathan replied on Mon Mar 2, 2009 @ 12:41pm |
Good [+1]Toggle ReplyLink» E73V3N replied on Mon Mar 2, 2009 @ 12:46pm |
Virtualdub
[ www.virtualdub.org ] Open the Vid, For Video Processing select No processing. For Audo Processing, select Direct Stream copy to keep the same codec and bitrate or choose wav etc then export or save. | |
I'm feeling renard right now.. |
Good [+1]Toggle ReplyLink» cutterhead replied on Mon Mar 2, 2009 @ 12:48pm |
here a fast copy paste i have better renaming script but so yall see since it kind looks like non of you pulled mplay...
Hi You can use the following script to convert your .wma files into .mp3 files. #!/bin/sh mplayer $1 -ao pcm:file=$1.wav; lame $1.wav $1.mp3 After convertion, the converted file has name like this; <filename>.wma.mp3 you can rename it to; <filename>.mp3 I have tested this script and it suerly is working. NOTE: mplayer and lame are prerequisite for this script. Thanks or better #!/bin/bash current_directory=$( pwd ) #remove spaces for i in *.wma; do mv "$i" `echo $i | tr ' ' '_'`; done #remove uppercase for i in *.[Ww][Mm][Aa]; do mv "$i" `echo $i | tr '[A-Z]' '[a-z]'`; done #Rip with Mplayer / encode with LAME for i in *.wma ; do mplayer -vo null -vc dummy -af resample=44100 -ao pcm -waveheader $i && lame -m s audiodump.wav -o $i; done #convert file names for i in *.wma; do mv "$i" "`basename "$i" .wma`.mp3"; done rm audiodump.wav go here : here is more example on how this tool is very usefull for averything. [ www.linuxquestions.org ] CAN I STRESS AGAIN THAT YOU CAN "BATCH CONVERT WHOLE DIRECTORIES UNATTENDED ??" i bet a lot of GUI will fail at it. you can search fo dvd to mp4 with mplay etc.. | |
I'm feeling 4hz even if you dont right now.. |
Audio Extractors
Page: 1 |
[ Top Of Page ] |
Post A Reply |
You must be logged in to post a reply.
[ Top Of Page ] |