Skip to content

Instantly share code, notes, and snippets.

@bousqi
bousqi / youtube-dl.sh
Created March 14, 2020 20:48
Useful commands using youtube-dl
# retreive available formart
youtube-dl $URL -F
# download best format
youtube-dl $URL -f best
# download specific video and audio + merge
youtube-dl $URL -f 137+140 --merge-output-format mkv
@bousqi
bousqi / x264_convert.sh
Last active May 5, 2023 01:49
FFMPEG Video Convert
##########################
# FFMPEG 5
##########################
# refer to : https://superuser.com/questions/1380946/how-do-i-convert-10-bit-h-265-hevc-videos-to-h-264-without-quality-loss
# 10-bit/12-bit HEVC to 8-bit H.264
ffmpeg -i input.mkv -map 0 -c:v libx264 -crf 18 -vf format=yuv420p -c:a copy output.mkv
# 10-bit/12-bit HEVC to 10-bit H.264
ffmpeg -i input.mkv -map 0 -c:v libx264 -crf 18 -c:a copy output.mkv