Re: ot audio and facebook

2012-08-07 Thread Michael Havens
and that worked! Thanks for all your help. I was wondering, is there a way to record like we did with tapes? On Mon, Aug 6, 2012 at 10:51 PM, sean ritzler sean.a.ritz...@gmail.com wrote: You need libavcodec-extra-53 (sudo apt-get install libavcodec-extra-53). This is a non-free codec I believe

ot audio and facebook

2012-08-06 Thread Michael Havens
is there a way to parse audio from facebook videos and save the clips for offline listening? I want the audio from here: https://www.youtube.com/watch?v=ylLCYbySTqgfeature=related -- :-)~MIKE~(-: --- PLUG-discuss mailing list -

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
as an alternative I guess I could save the videos. On Mon, Aug 6, 2012 at 3:33 PM, Michael Havens bmi...@gmail.com wrote: is there a way to parse audio from facebook videos and save the clips for offline listening? I want the audio from here:

Re: ot audio and facebook

2012-08-06 Thread sean ritzler
You can save the video in a number of ways (the most popular way seems to be youtube-dl). ffmpeg can then extract the audio from the video. On Mon, Aug 6, 2012 at 3:34 PM, Michael Havens bmi...@gmail.com wrote: as an alternative I guess I could save the videos. On Mon, Aug 6, 2012 at 3:33

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
Well I'm stuck at ffmpeg part. This is the error I get: Unknown encoder 'mp3' I looked at the manpage but don't really know what I'm looking at. Can ya help? bmike1@Michaels-Laptop:/media/entertainment/Videos$ ffmpeg -i beimirbistduschon -acodec mp3 -ac 2 -ab 128 -vn -y

Re: ot audio and facebook

2012-08-06 Thread Ken
PLUG-discuss@lists.plug.phoenix.az.us Sent: Monday, August 6, 2012 3:33 PM Subject: ot audio and facebook is there a way to parse audio from facebook videos and save the clips for offline listening? I want the audio from here: https://www.youtube.com/watch?v=ylLCYbySTqgfeature=related

Re: ot audio and facebook

2012-08-06 Thread sean ritzler
'mp3' is a decoder, not an encoder, so you will have to use 'acodec libmp3lame', which means you will have to install 'lame'. On Mon, Aug 6, 2012 at 5:23 PM, Michael Havens bmi...@gmail.com wrote: Well I'm stuck at ffmpeg part. This is the error I get: Unknown encoder 'mp3' I looked

Re: ot audio and facebook

2012-08-06 Thread Steven A. DuChene
--- From: Michael Havens bmi...@gmail.com To: Main PLUG discussion list PLUG-discuss@lists.plug.phoenix.az.us Sent: Monday, August 6, 2012 3:33 PM Subject: ot audio and facebook is there a way to parse audio from facebook videos and save the clips for offline listening? I want

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
site I know of that does this for you. -- Steven DuChene --- From: Michael Havens bmi...@gmail.com To: Main PLUG discussion list PLUG-discuss@lists.plug.phoenix.az.us Sent: Monday, August 6, 2012 3:33 PM Subject: ot audio and facebook

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
...@gmail.com To: Main PLUG discussion list PLUG-discuss@lists.plug.phoenix.az.us Sent: Monday, August 6, 2012 3:33 PM Subject: ot audio and facebook is there a way to parse audio from facebook videos and save the clips for offline listening? I want the audio from here: https://www.youtube.com

Re: ot audio and facebook

2012-08-06 Thread Steven A. DuChene
To: Steven A. DuChene linux-clust...@mindspring.com, Main PLUG discussion list plug-discuss@lists.plug.phoenix.az.us Subject: Re: ot audio and facebook bummer it says it 'll do it 4 more times. What happens after that? On Mon, Aug 6, 2012 at 6:47 PM, Michael Havens bmi...@gmail.com wrote: wow

Re: ot audio and facebook

2012-08-06 Thread sean ritzler
After trying it out I see that youtube-dl will actually do the extraction to mp3 for you (provided that ffmpeg and probably lame are installed): youtube-dl --audio-format=mp3 --extract-audio http://youtube.com/video --- PLUG-discuss mailing list -

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
I didn't see that in thr man page! I guess I just glossed over it. I am so sorry! Thanks for the help. On Mon, Aug 6, 2012 at 9:19 PM, sean ritzler sean.a.ritz...@gmail.com wrote: After trying it out I see that youtube-dl will actually do the extraction to mp3 for you (provided that ffmpeg and

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
buddy... Where did you get your copy of youtube-dl? Mine doesn't have the '--audio-format / extact-audio options. I even streamed another youtube file but another video file was created. (I thought i looked over the man page caredully) On Mon, Aug 6, 2012 at 9:19 PM, sean ritzler

Re: ot audio and facebook

2012-08-06 Thread sean ritzler
From Debian Wheezy, version 2012.02.27. I expect older versions to be able to do it. The exact command I did is: 'youtube-dl --audio-format=mp3 --extract-audio http://www.youtube.com/watch?v=sHjlM5A1jMEfeature=related' and it saved both an flv and mp3. If you have an flv - any flv - try: 'ffmpeg

Re: ot audio and facebook

2012-08-06 Thread Derek Trotter
Is this the program you mentioned? http://www.youtubedownloadersite.com/ That's the one I use and I've been happy with it. On 8/6/2012 21:19, sean ritzler wrote: After trying it out I see that youtube-dl will actually do the extraction to mp3 for you (provided that ffmpeg and probably lame are

Re: ot audio and facebook

2012-08-06 Thread sean ritzler
Nope, it's simply 'youtube-dl', available in many default repos (see https://launchpad.net/ubuntu/+source/youtube-dl). On Mon, Aug 6, 2012 at 10:11 PM, Derek Trotter expat.arizo...@gmail.comwrote: Is this the program you mentioned? http://www.youtubedownloadersite.com/ That's the one I use

Re: ot audio and facebook

2012-08-06 Thread Michael Havens
okay from the error I got (E: Unable to locate package libmp3lame) it seems lame isn't installed. So I updatedb and install lame and do the download again ... and now I wait for it to d/l! ... but again! I get an error. Similar yet different. (ERROR: audio conversion failed: Unknown encoder

Re: ot audio and facebook

2012-08-06 Thread sean ritzler
You need libavcodec-extra-53 (sudo apt-get install libavcodec-extra-53). This is a non-free codec I believe - try installing through the graphical software center. On Mon, Aug 6, 2012 at 10:41 PM, Michael Havens bmi...@gmail.com wrote: okay from the error I got (E: Unable to locate package