Skip to content

Instantly share code, notes, and snippets.

View Ink-33's full-sized avatar
🍀
Clover~

Ink33 Ink-33

🍀
Clover~
View GitHub Profile
@Ink-33
Ink-33 / unzipjis.sh
Last active December 13, 2022 06:17
extract zip in shiftjis
7z x 1.zip -mcp=932
@Ink-33
Ink-33 / clearmedia.md
Created May 2, 2022 03:12
Stripe metadata info and album cover from audio using ffmpeg.
ffmpeg.exe -i in.flac -map 0:0 -map_metadata -1 -codec:a copy out.flac

-map 0:0 means only keep the stream 0 of input file 0, which is using to strip album cover.

-map_metadata -1 means to strip all metadata info.