How to download a Reddit video with sound using the yt-dlp script.

Downloading a Reddit video with sound using the yt-dlp script from a post is easy with the aforementioned script. There are other ways to do this, but this solution is the best. The Swiss Army Knife script yt-dlp is very useful to download just about any online video. ┌──(john㉿DESKTOP-PF01IEE)-[/mnt/c/Users/Intel i5/Videos] └─$ yt-dlp https://www.reddit.com/r/facepalm/comments/u78y2q/karen_in_china_telling_a_chinese_bus_driver_to_go/ [Reddit] u78y2q: … Read more

How to make a spectrogram with FFmpeg on Linux. This is very cool.

Making a spectrogram with FFmpeg on Linux is very easy. The FFmpeg utility is the best way to accomplish this task. This simple command will render a spectrogram of the audio file. This can be very interesting if the music file contains hidden information in the audio. ┌──(john㉿DESKTOP-PF01IEE)-[/mnt/c/Users/Intel i5/Music/Rap] └─$ ffmpeg -i das\ efx\ -\ … Read more

A very good mencoder command-line to rip a DVD in very good quality.

This long one-liner will rip a DVD in very good quality to an AVI file. ┌──[[email protected]]─[~] └──╼ ╼ $ mencoder -passlogfile 2passlog.log -oac mp3lame -lameopts vbr=3 -ovc xvid -xvidencopts bitrate=1400:me_quality=6:chroma_me=1:nointerlacing:max_bframes=1:noqpel:hq_ac:trellis:quant_type=mpeg:chroma_opt:bvhq=1:vhq=4:autoaspect:pass=1:turbo -aid 128 -ofps 23.976 dvd:// -o evil_dead_movie.avi┌──[[email protected]]─[~] └──╼ ╼ $ mencoder -passlogfile 2passlog.log -oac mp3lame -lameopts vbr=3 -ovc xvid -xvidencopts bitrate=1400:me_quality=6:chroma_me=1:nointerlacing:max_bframes=1:noqpel:hq_ac:trellis:quant_type=mpeg:chroma_opt:bvhq=1:vhq=4:autoaspect:pass=1:turbo -aid 128 -ofps 23.976 … Read more