Recording television with mplayer.

Record television with mplayer, with this simple script. This is very useful indeed. #!/bin/sh   mencoder tv:// -tv driver=v4l2:input=1:norm=pal:width=720:height=576: \ device=/dev/video0:forceaudio:audiorate=32000:alsa:adevice=hw.0 buffersize=64 -ovc lavc \ -lavcopts vcodec=mpeg4:vbitrate=1300:keyint=30 -oac mp3lame -lameopts \ br=96:cbr:mode=3 -ffourcc divx -endpos 04:00:00 -o ~/Videos/tv-`date +%y%m%d_%H%M`-m.avi > /dev/null#!/bin/sh mencoder tv:// -tv driver=v4l2:input=1:norm=pal:width=720:height=576: \ device=/dev/video0:forceaudio:audiorate=32000:alsa:adevice=hw.0 buffersize=64 -ovc lavc \ -lavcopts vcodec=mpeg4:vbitrate=1300:keyint=30 -oac mp3lame … Read more