How to save a Youtube playlist as mp3 files with Linux.

Saving a Youtube playlist as mp3 files is easy with Linux. The youtube-dl script is capable of handling this easily. You need to specify the playlist ID instead of the whole URL. Below is an example, this shows how easy it is to save a bunch of videos as mp3 files. ┌──[[email protected]]─[~/Music/newyoutube] └──╼ ╼ $ … Read more

How to download a Youtube video as an MP3 with Linux.

Saving a Youtube video as audio and not video is very easy. This command below will save Youtube audio as an MP3 file. You need youtube-dl as well. Then select a Youtube video and use this one-liner to download it as an MP3 audio file. jason@jason-Lenovo-H50-55:~/Videos$ youtube-dl -f 140 https://www.youtube.com/watch?v=neEXAoYfcRo -o – | ffmpeg -hide_banner … Read more

Download a Youtube video to mp3 with the Linux shell.

Firstly, install youtube-dl. jason@darkstar:~/Music$ sudo apt-get install youtube-dljason@darkstar:~/Music$ sudo apt-get install youtube-dl Then run this command with the Youtube video URL. jason@darkstar:~/Music$ youtube-dl -f bestaudio -x –audio-format mp3 –prefer-ffmpeg https://www.youtube.com/watch?v=UWFm2LIYNjg [youtube] UWFm2LIYNjg: Downloading webpage [youtube] UWFm2LIYNjg: Extracting video information [youtube] UWFm2LIYNjg: Downloading DASH manifest [download] Destination: Dune (1983) OST – Dune Prophecy (Long Version)-UWFm2LIYNjg.m4a [download] … Read more

How to add restricted codecs support to Fedora Core 19 easily with one simple package.

The Fedora 19 Linux distribution is working very well now, I have added the restricted codecs support with the help of the Fedora Utils package available on this page: http://satya164.github.io/fedorautils/. This is a GUI utility for adding support for Xvid and MP3 on Fedora 19. You just click checkboxes to add various packages and codecs. … Read more

Malcom Turnbull and his failure on the NBN.

Hack Tuesday April 9 2013: http://mpegmedia.abc.net.au/triplej/hack/daily/hack_tue_2013_4_9.mp3. Listen to this recording of the ABC TripleJ radio show Hack and hear what Malcom Turnbull is planning if the Liberals get into power in 2013. A broadband network using copper wires instead of the Labour proposed fibre to the node that would use a network capable of 100 … Read more

How to use mplayer to rip the sound from a video and create a wav file that you can encode with lame.

This is the command I just used to rip the audio from a movie and save it as a wav file. Then the lame command is used to encode the wav into an mp3 file. john@adeptus-mechanicus ~/Music $ mplayer -ao pcm:fast:file=out.wav -vo null -vc null video.mp4 && lame -h -b 320 out.wavjohn@adeptus-mechanicus ~/Music $ mplayer … Read more

Fedora 17 first impressions concerning the /usr move and new / folder layout.

Fedora 17 multimedia setup tips: http://www.securitronlinux.com/fedora-core-15-package-management/. Tips on setting up the multimedia packages on Fedora Core 17. Easy MP3 codec installation. This does not install the codecs required to playback Xvid movies, but if you try to play an Xvid movie in Totem, it will pop up a message box telling you about the missing … Read more

Fedora 17 Linux distribution available for download. How to add non-free codecs and MP3 support.

The Fedora 17 Linux distribution has been released with Gnome Shell 3.4.1, Gimp 2.8 and software rendering available for the Gnome Shell desktop, negating the need for the Gnome Shell fall-back desktop if your hardware does not offer proper hardware rendering for the Gnome desktop. Various non-free codecs such as MP3 support, Adobe flash and … Read more

Interesting /bin/cat trick. How to join mp3 files together.

I was playing around with /bin/cat on my FreeBSD laptop and I typed this command. This is a useful trick to join mp3 files together in one long audio file. jason@Yog-Sothoth:~/Music$ cat Dune\ \(1983\)\ OST\ -\ Dune\ Prophecy\ \(Long\ Version\)-UWFm2LIYNjg.mp3 > ambient-winter.mp3jason@Yog-Sothoth:~/Music$ cat Dune\ \(1983\)\ OST\ -\ Dune\ Prophecy\ \(Long\ Version\)-UWFm2LIYNjg.mp3 > ambient-winter.mp3 And now … Read more