• 2 Posts
  • 17 Comments
Joined 30 days ago
cake
Cake day: August 6th, 2026

help-circle




  • Thanks for your recommendation.

    Regarding lossless encoding, I find flac much smaller than wav, another lossless format, while lossless AV1 is quite huge in size when converting from H264/H265.

    ~/a $ du -sh *
    10308   file_example_WAV_10MG.wav
    2924    file_example_WAV_10MG_ffmpeg_flac.flac
    2016    file_example_WAV_10MG_ffmpeg_opus_256k.opus
    ~/a $ declare -f ffmpeg_flac ffmpeg_opus
    ffmpeg_flac ()
    {
        if [ "$#" -eq 0 ]; then
            return;
        fi;
        ffmpeg -i "$1" -c:a flac "${2:-"$(echo "$1" | remove_extension)_ffmpeg_flac.flac"}"
    }
    ffmpeg_opus ()
    {
        if [ "$#" -lt 2 ]; then
            return;
        fi;
        ffmpeg -i "$2" -c:a libopus -vbr:a 1 -ac 2 -b:a "$1" "${3:-"$(echo "$2" | remove_extension)_ffmpeg_opus_$1.opus"}"
    }
    


  • Ι stick with KDE Plasma after trying GNOME, KDE, and Cinnamon. In GNOME, many settings are not available in GUI (I don’t remember which they are now), while they are available in KDE. And back when I used Cinnamon it didn’t support Wayland while some of my apps (especially Waydroid) needs Wayland. But I mostly use CLI for daily tasks for automation and easier copy-pasting forum answers, asking LLM, and sharing to GitHub, so I may not be a representative DE user.