#linux
Read more stories on Hashnode
Articles with this tag
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...
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...
Here's the one-liner: find /data/Music -type f \( -iname "*.mp3" -o -iname "*.m4a" \) -print | shuf -n 1 | xargs --delimiter '\n' vlc...
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...
Update: This article is outdated. Ubuntu Budgie 21.10 is now the current version and I have upgraded to it and suggest you do the same. Most of the...
In Bash, the history command displays previously executed statements. You can re-execute any line displayed in history by using ! followed by the line...