Hi all,
Does anybody know of any FOSS program in linux which can convert from flv format (video) to mp3 or ogg (audio) format. I am using the file conversion service at zamzar.com and it takes pretty long to upload large files. It would be nice if there was a program for this sort of work.
Also earlier i had heard about a site to convert pdfs to mp3 files but can't seem to find the site. if anybody knows of a good site or software pls let me know.
I have been trying to update my knowledge and many times the eyes get tired and so audio would help supplement the learning process.
Thanks for any help.
Regards, Kussh
I rem using ffmpeg for converting flv to mp3 (for mp3 you would also need to have lame library) try googling on ffmpeg documentation and that should get you going.
Dipen
On Fri, Jul 24, 2009 at 10:49 PM, Kussh Singh kussh.singh@gmail.com wrote:
Hi all,
Does anybody know of any FOSS program in linux which can convert from flv format (video) to mp3 or ogg (audio) format. I am using the file conversion service at zamzar.com and it takes pretty long to upload large files. It would be nice if there was a program for this sort of work.
Also earlier i had heard about a site to convert pdfs to mp3 files but can't seem to find the site. if anybody knows of a good site or software pls let me know.
I have been trying to update my knowledge and many times the eyes get tired and so audio would help supplement the learning process.
Thanks for any help.
Regards, Kussh -- http://mm.glug-bom.org/mailman/listinfo/linuxers
On Fri, Jul 24, 2009 at 10:49 PM, Kussh Singhkussh.singh@gmail.com wrote:
Also earlier i had heard about a site to convert pdfs to mp3 files but can't seem to find the site. if anybody knows of a good site or software pls let me know.
I have been trying to update my knowledge and many times the eyes get tired and so audio would help supplement the learning process.
You could try Orca (Screen Reader) to give rest to your tired eyes?
Thanks for any help.
Regards, Kussh
With regards,
Hi! (I'm brazilian, so, sorry by my poor english) To do this conversion you can use ffmpeg. The sintax is: ffmpeg -i <flv_file> -ab 128k <output_file>.mp3 or: ffmpeg -i <flv_file> -ab 128k <output_file>.ogg
Date: Fri, 24 Jul 2009 22:49:08 +0530 From: kussh.singh@gmail.com To: linuxers@mm.ilug-bom.org.in Subject: [ILUG-BOM] flv conversion to ogg or mp3 files --video to audio files
Hi all,
Does anybody know of any FOSS program in linux which can convert from flv format (video) to mp3 or ogg (audio) format. I am using the file conversion service at zamzar.com and it takes pretty long to upload large files. It would be nice if there was a program for this sort of work.
Also earlier i had heard about a site to convert pdfs to mp3 files but can't seem to find the site. if anybody knows of a good site or software pls let me know.
I have been trying to update my knowledge and many times the eyes get tired and so audio would help supplement the learning process.
Thanks for any help.
Regards, Kussh -- http://mm.glug-bom.org/mailman/listinfo/linuxers
_________________________________________________________________ Com o Windows Live, você pode organizar, editar e compartilhar suas fotos. http://www.microsoft.com/brasil/windows/windowslive/products/photo-gallery-e...
Jefferson Diego Gomes wrote:
Hi! (I'm brazilian, so, sorry by my poor english) To do this conversion you can use ffmpeg. The sintax is: ffmpeg -i <flv_file> -ab 128k <output_file>.mp3 or: ffmpeg -i <flv_file> -ab 128k <output_file>.ogg
Change -ab to 160K for better audio bit-rate.
Yes! You can change -ab number. A lot of people uses 192 instead... better for CD rip... But has another issue: If you use 160 in bitrate, may you only increase the size of file without quality change, 'cause some FLV files has audio bitrate in 128k.
Date: Sat, 25 Jul 2009 00:29:39 +0530 From: gnulinuxist@gmail.com To: linuxers@mm.ilug-bom.org.in Subject: Re: [ILUG-BOM] flv conversion to ogg or mp3 files --video to audio files
Jefferson Diego Gomes wrote:
Hi! (I'm brazilian, so, sorry by my poor english) To do this conversion you can use ffmpeg. The sintax is: ffmpeg -i <flv_file> -ab 128k <output_file>.mp3 or: ffmpeg -i <flv_file> -ab 128k <output_file>.ogg
Change -ab to 160K for better audio bit-rate.
-- Regards,
Rony.
GNU/Linux ! No Viruses No Spyware Only Freedom.
_________________________________________________________________ Conheça os novos produtos Windows Live! Clique aqui. http://www.windowslive.com.br
THANK YOU TO ALL THOSE WHO REPLIED.
Regards, kussh
On Sat, Jul 25, 2009 at 7:39 AM, Kussh Singh kussh.singh@gmail.com wrote:
THANK YOU TO ALL THOSE WHO REPLIED.
let me also add myself to thank-list ;)
vlc -vvv filename.flv ":sout=#transcode{acodec=vorb,channels=2}:std{access=file,mux=ogg,dst="filename.ogg"}" --sout-vorbis-quality 5
full command in single line copy paste from - https://forum.videolan.org/viewtopic.php?f=13&t=55306&p=182525
I found another way which is GUI based and so simpler for some of us--I used a program called winff which i found from synaptic after people here clued me to ffmpeg. Its a frontend for ffmpeg and can batch convert entire directories. regards, kussh
you can do same thing with VLC gui
On Sat, Jul 25, 2009 at 3:09 PM, narendra sisodiya < narendra.sisodiya@gmail.com> wrote:
you can do same thing with VLC gui
Noted. Will try that too.
Thank you Kussh
Kussh Singh wrote:
Hi all,
Does anybody know of any FOSS program in linux which can convert from flv format (video) to mp3 or ogg (audio) format. I am using the file conversion service at zamzar.com and it takes pretty long to upload large files. It would be nice if there was a program for this sort of work.
Also earlier i had heard about a site to convert pdfs to mp3 files but can't seem to find the site. if anybody knows of a good site or software pls let me know.
I have been trying to update my knowledge and many times the eyes get tired and so audio would help supplement the learning process.
Use ffmpeg. Check out the man page for ffmpeg.