Last active
April 6, 2025 04:50
-
-
Save thornbill/eb97761472cd0285106a98c101eff962 to your computer and use it in GitHub Desktop.
DVR post processing script for Jellyfin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
# set -o xtrace | |
PWD="$(pwd)" | |
die () { | |
echo >&2 "$@" | |
cd "${PWD}" | |
exit 1 | |
} | |
# Colors | |
GREEN='\033[0;32m' | |
NC='\033[0m' # No Color | |
__path="${1:-}" | |
# verify a path was provided | |
[ -n "$__path" ] || die "path is required" | |
# verify the path exists | |
[ -f "$__path" ] || die "path ($__path) is not a file" | |
__dir="$(dirname "${__path}")" | |
__file="$(basename "${__path}")" | |
__base="$(basename "${__path}" ".ts")" | |
# Debbuging path variables | |
# printf "${GREEN}path:${NC} ${__path}\ndir: ${__dir}\nbase: ${__base}\n" | |
# Try to find local version of ffmpeg, defaults to the path used in docker if not found | |
__ffmpeg="$(which ffmpeg || echo '/usr/lib/jellyfin-ffmpeg/ffmpeg')" | |
# Change to the directory containing the recording | |
cd "${__dir}" | |
# Extract closed captions to external SRT file | |
printf "[post-process.sh] %bExtracting subtitles...%b\n" "$GREEN" "$NC" | |
$__ffmpeg -f lavfi -i movie="${__file}[out+subcc]" -map 0:1 "${__base}.srt" | |
# Transcode to mp4, crf parameter can be adjusted to change output quality | |
printf "[post-process.sh] %bTranscoding file..%b\n" "$GREEN" "$NC" | |
$__ffmpeg -i "${__file}" -vcodec libx264 -vf yadif=parity=auto -crf 20 -preset veryslow "${__base}.mp4" | |
# Remove the original recording file | |
printf "[post-process.sh] %bRemoving originial file...%b\n" "$GREEN" "$NC" | |
rm "${__file}" | |
# Return to the starting directory | |
cd "${PWD}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@clockwinder
I moved to using a python script to make it easier to do more things easier, it's definitely not optimized, but you could add an additional case to my code here:
https://github.com/AndrewBreyen/Jellyfin-TV-Post-Process/blob/6b29fa493e3c2c34387b2f7b5e9a74626846300e/macmini/record_post_process.py#L77