Skip to content

Instantly share code, notes, and snippets.

View Justin-ZS's full-sized avatar
🎧
Coding

Jin Justin-ZS

🎧
Coding
  • MicroStrategy
  • HangZhou, China
View GitHub Profile
@Justin-ZS
Justin-ZS / makeMP4.sh
Last active December 28, 2020 14:39
[bilibili] Recover mp4 from audio.m4s and video.m4s
#!/bin/zsh
output_dir="videos"
if [[ ! -e "$output_dir" ]]; then
mkdir "$output_dir"
fi
for i in */*; do
if [[ -d $i ]]; then