My Ubuntu netbook suddenly stopped having sound from its external speakers. No such problem if using headphone jack.
The solution is simple --> I have accidentally switched "iSpeaker" off in "Volume Control > Preferences"
Showing posts with label audio. Show all posts
Showing posts with label audio. Show all posts
Thursday, November 26, 2009
Friday, September 25, 2009
Rip video or audio from Youtube video
# Install youtube-dl to download video into flv file
sudo apt-get install youtube-dl
youtube-dl http://
# Install ffmpeg to do the conversions
sudo apt-get install ffmpeg
# Convert to mp3 audio
sudo apt-get install libavcodec-unstripped-52
ffmpeg -i input.flv -ac 2 -ab 128000 -ar 44100 output.mp3
# Convert to mpeg video
ffmpeg -i input.flv output.mpg
refs:
http://pblog.ebaker.me.uk/2009/01/rip-youtube-videos-on-ubuntu.html
https://lists.ubuntu.com/archives/universe-bugs/2009-January/041895.html
Subscribe to:
Posts (Atom)