Hi! I’m an anime artist!
Check out my work on BlueSky, Pixiv, or Twitter

  • 5 Posts
  • 465 Comments
Joined 2 年前
cake
Cake day: 2024年3月3日

help-circle







  • I read that article before and it just felt kinda strange to me. Like, obviously, thats an attention grabbing headline, and yeah, it goes on to talk about how, Amercian consumers are holding on to their devices longer than before, but then I think what they really wanted to talk about when they say “costing the economy” was more focused on companies not upgrading their hardware as often.

    Like, they go on to say that there’s productivity being left on the table because the computer your job gives you is too slow to run heavy modern programs.

    CNBC always feels so alien to me













  • ffmpeg can do that. It’s a command-line utility that can do a ton of media format conversions. Idk what OS you’re on, but you’ll have to download ffmpeg, extract it, then use the ffmpeg executable file.

    for Windows file paths it would be something like:

    cd path\to\album\folder C:\path\to\ffmpeg.exe -i song.flac -map 0:a -c:a copy song.mp4

    to shove a flac file into an mp4 container as is. If, for whatever reason, the program you’re trying to use, still doesn’t like the flac format in the mp4 container, you can convert it to a 320kbps mp3 like:

    C:\path\to\ffmpeg.exe -i song.flac -map 0:a -c:a libmp3lame -b:a 320k song.mp4

    (320kbps mp3 would probably have the least loss in perceptual quality from FLAC, while still having a wide range of compatibility)

    (Also, the -map 0:a term makes sure that ffmpeg only tries to convert the audio stream. If you’ve got album art embedded in the FLAC file, it’ll get upset trying to convert the album art to a h.264 without the map argument)

    As for converting the whole album at once, if you’re on Windows, idk how to do that. You’d have to look up how to use ForEach in powershell or something like that.

    Anyone reading this on a Unix-like in bash would be able to run it in a loop in the album folder like: for file in *.flac; do; ffmpeg -i "$file" -map 0:a -c:a libmp3lame -b:a 320k "${file%.*}.mp4"; done