2024-07-22, 06:02 AM
(This post was last modified: 2024-07-22, 06:08 AM by unmesh59. Edited 1 time in total.
Edit Reason: Better formatting
)
I pulled the ffprobe invocation out of the log file where it was erroring out. Turns out it might have been related to the encoding format of the .srt file being of type Unicode with BOM.
/usr/lib/jellyfin-ffmpeg/ffprobe -analyzeduration 200M -probesize 1G -i file:"/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/The.Kids.Are.All.Right.2010.720p.BluRay.x264.YIFY.srt" -threads 0 -v warning -print_format json -show_streams -show_format > output.txt 2>&1
As for the file/directory protections:
/usr/lib/jellyfin-ffmpeg/ffprobe -analyzeduration 200M -probesize 1G -i file:"/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/The.Kids.Are.All.Right.2010.720p.BluRay.x264.YIFY.srt" -threads 0 -v warning -print_format json -show_streams -show_format > output.txt 2>&1
Code:
unmesh59@ubuntuserver24:~$ cat output.txt
{
"streams": [
{
"index": 0,
"codec_name": "subrip",
"codec_long_name": "SubRip subtitle",
"codec_type": "subtitle",
"codec_tag_string": "[0][0][0][0]",
"codec_tag": "0x0000",
"r_frame_rate": "0/0",
"avg_frame_rate": "0/0",
"time_base": "1/1000",
"disposition": {
"default": 0,
"dub": 0,
"original": 0,
"comment": 0,
"lyrics": 0,
"karaoke": 0,
"forced": 0,
"hearing_impaired": 0,
"visual_impaired": 0,
"clean_effects": 0,
"attached_pic": 0,
"timed_thumbnails": 0,
"captions": 0,
"descriptions": 0,
"metadata": 0,
"dependent": 0,
"still_image": 0
}
}
],
"format": {
"filename": "file:/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/The.Kids.Are.All.Right.2010.720p.BluRay.x264.YIFY.srt",
"nb_streams": 1,
"nb_programs": 0,
"format_name": "srt",
"format_long_name": "SubRip subtitle",
"size": "117932",
"probe_score": 100
}
}
As for the file/directory protections:
Code:
unmesh59@ubuntuserver24:~$ ls -ld /mnt/Syno-Lenovo-1 /mnt/Syno-Lenovo-1/Videos /mnt/Syno-Lenovo-1/Videos/_English /mnt/Syno-Lenovo-1/Videos/_English/"The Kids Are All Right (2010)"
drwxr-xr-x 2 root root 0 Jan 28 11:08 /mnt/Syno-Lenovo-1
drwxr-xr-x 2 root root 0 Jun 27 17:53 /mnt/Syno-Lenovo-1/Videos
drwxr-xr-x 2 root root 0 Jul 21 17:00 /mnt/Syno-Lenovo-1/Videos/_English
drwxr-xr-x 2 root root 0 Jul 21 15:11 '/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)'
Code:
unmesh59@ubuntuserver24:~$ ls -l /mnt/Syno-Lenovo-1/Videos/_English/"The Kids Are All Right (2010)"/*
-rwxr-xr-x 1 root root 130147 Sep 1 2022 '/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/fanart.jpg'
-rwxr-xr-x 1 root root 271053 Sep 1 2022 '/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/folder.jpg'
-rwxr-xr-x 1 root root 8499 Sep 1 2022 '/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/movie.nfo'
-rwxr-xr-x 1 root root 849682722 Sep 1 2022 '/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/The.Kids.Are.All.Right.2010.720p.BluRay.x264.YIFY.mp4'
-rwxr-xr-x 1 root root 117932 Jul 21 15:11 '/mnt/Syno-Lenovo-1/Videos/_English/The Kids Are All Right (2010)/The.Kids.Are.All.Right.2010.720p.BluRay.x264.YIFY.srt'