Brett Tolbert
Brett Tolbert's Blog

Brett Tolbert's Blog

Follow
Follow
homebadges
Tag

Open Source

#opensource

More content

Read more stories on Hashnode


Articles with this tag

Using ffmpeg to a make TikTok video with a SoundCloud-style Ken Burns panning effect

Apr 8, 20221 min read

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...

Using ffmpeg to a make TikTok video with a SoundCloud-style Ken Burns panning effect

Bash one-liner: Play a random .mp3 or .m4a file

Feb 26, 20221 min read

Here's the one-liner: find /data/Music -type f \( -iname "*.mp3" -o -iname "*.m4a" \) -print | shuf -n 1 | xargs --delimiter '\n' vlc...

Bash one-liner: Play a random .mp3 or .m4a file