Re: how to get audio from youtube?

2012-12-11 Thread Waitman Gobble
On Dec 11, 2012 8:19 PM, "Gary Kline"  wrote:
>
>
> is there a way I can get the audio off u-toob?
>
> --
>  Gary Kline  kl...@thought.org  http://www.thought.org  Public Service
Unix
>   Twenty-six years of service to the Unix community.
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
freebsd-questions-unsubscr...@freebsd.org"

oh its like the new old napster.

Youtube downloader works pretty good, needs python.

http://rg3.github.com/youtube-dl/

then convert using ffmpeg.

Waitman Gobble
San Jose California USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: how to get audio from youtube?

2012-12-11 Thread Gary Kline
On Tue, Dec 11, 2012 at 08:38:23PM -0800, Waitman Gobble wrote:
> On Dec 11, 2012 8:19 PM, "Gary Kline"  wrote:
> >
> >
> > is there a way I can get the audio off u-toob?
> >
> > --
> >  Gary Kline  kl...@thought.org  http://www.thought.org  Public Service
> Unix
> >   Twenty-six years of service to the Unix community.
> >
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "
> freebsd-questions-unsubscr...@freebsd.org"
> 
> oh its like the new old napster.
> 
> Youtube downloader works pretty good, needs python.
> 
> http://rg3.github.com/youtube-dl/
> 
> then convert using ffmpeg.
> 
> Waitman Gobble
> San Jose California USA



thankee; will check it out!
-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
  Twenty-six years of service to the Unix community.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: how to get audio from youtube?

2012-12-11 Thread Polytropon
On Tue, 11 Dec 2012 20:17:05 -0800, Gary Kline wrote:
> 
>   is there a way I can get the audio off u-toob?

Depends. The FreeBSD solution:

1. Use youtube-dl (it's in ports) to download the file.

2. Use ffmpeg -i   to get the audio
   converted to MP3.

This process can be scripted if you require batch operation.

If you are fine with the native audio component, you could
just use "mplayer -dumpaudio  && mv stream.dump
", but that's not always optimal for further
use (and depends on FLV vs. MP4 file format).

Alternative: There are web services that allow you to paste
a YT URI and then download it in MP3 format. Such a service
is http://www.youtube-mp3.org - but there are several others.

But please be advised that it's illegal to listen to MP3 in
the USA. :-)




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"