Use case: you want to upload your OC music recording to TikTok but you only have audio and TikTok requires video. What to do? Well, you can find a high-resolution image and generate a video from it and your recorded audio file using ffmpeg. Here's ho...
Here's the one-liner: ffmpeg -vsync 1 -f alsa -ac 2 -acodec pcm_s16le -i hw:1,0 -f v4l2 -framerate 15 -video_size 640x480 -i /dev/video0 -vcodec libx264 -preset ultrafast -crf 0 -b:a 320k output.mkv Modify the hw:1,0 to the right card and device num...
Here's the one-liner: find /data/Music -type f \( -iname "*.mp3" -o -iname "*.m4a" \) -print | shuf -n 1 | xargs --delimiter '\n' vlc --play-and-exit But rather than type all that every time we want to listen to music, let's put it in a script file, ...
ID3 is the language of the metadata in your mp3 (or m4a) files. There are two major versions of ID3 tags: ID3v1 and ID3v2. ID3v2 has many features such as custom genre tags. Gone are the days of ID3v1 which limited users to a small set of predefined ...
Right click desktop and select Desktop Settings As shown in the screenshot below, go to Panels -> Top Panel -> Applets then click the + next to Add applet . Then choose the Keyboard Layout applet and click Add applet
A little shout-out to all the wonderful free software that has made my life easier: AnkiDroid Audacity Bash Budgie Linux Docker EasyTAG GIMP K3B Linux Meld NGINX Notepad++ OpenSSL Pandas Pandoc PuTTY Python Rhythmbox rsync Tilix terminal Vim Visual ...