This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Play a Video in the Command Line====== Install mplayer (emerge mplayer, apt install mplayer e.t.c.) Check available video formats: <code>mplayer -vo help</code> Check available audio formats: <code>mplayer -ao help</code> Then can try witch video, audio format works: <code>mplayer -vo fbdev2 -ao pulse video.mkv</code> Config file located /home/user/.mplayer/config If not, then need to create it. Config file example: <code> vo=fbdev2 ao=null vf=scale=1280:720 framedrop=yes xy=1280 </code> Then play <code>mplayer video.mkv</code> {{:20220911_131315.jpg?direct&400|}} ====== Watch Youtube Videos: ====== <code>youtube-dl https://www.youtube.com/watch?v=9Auq9mYxFEE -o - | mplayer - </code>