check sample rate and lower if too high
This commit is contained in:
parent
1e478e3545
commit
8c25f65024
1 changed files with 6 additions and 1 deletions
|
@ -195,10 +195,13 @@ class VideoFileAnalyzer:
|
||||||
if stream["codec_type"] != "audio":
|
if stream["codec_type"] != "audio":
|
||||||
continue
|
continue
|
||||||
codec = stream["codec_name"]
|
codec = stream["codec_name"]
|
||||||
|
sample_rate = stream['sample_rate']
|
||||||
log.debug(" Detected audio codec is %s", codec)
|
log.debug(" Detected audio codec is %s", codec)
|
||||||
if not {"aac", "mp3", "flac", "vorbis", "opus"}.intersection(codec.split(",")):
|
if not {"aac", "mp3", "flac", "vorbis", "opus"}.intersection(codec.split(",")):
|
||||||
return "Audio codec is not in the approved list of AAC, FLAC, MP3, Vorbis, and Opus. " \
|
return "Audio codec is not in the approved list of AAC, FLAC, MP3, Vorbis, and Opus. " \
|
||||||
f"Actual: {codec} [{stream['codec_long_name']}]"
|
f"Actual: {codec} [{stream['codec_long_name']}]"
|
||||||
|
if sample_rate > "48000":
|
||||||
|
return "Sample rate out of range"
|
||||||
|
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
@ -410,7 +413,7 @@ class VideoFileAnalyzer:
|
||||||
# the plan for transcoding:
|
# the plan for transcoding:
|
||||||
# we have to re-encode the video if it is in a nonstandard format
|
# we have to re-encode the video if it is in a nonstandard format
|
||||||
# we also re-encode if we are h264 but not yuv420p (both errors caught in video_msg)
|
# we also re-encode if we are h264 but not yuv420p (both errors caught in video_msg)
|
||||||
# we also re-encode if our bitrate is too high
|
# we also re-encode if our bitrate or sample rate is too high
|
||||||
|
|
||||||
try:
|
try:
|
||||||
transcode_command = [f'-i "{file_path}" -y -c:s copy -c:d copy -c:v']
|
transcode_command = [f'-i "{file_path}" -y -c:s copy -c:d copy -c:v']
|
||||||
|
@ -433,6 +436,8 @@ class VideoFileAnalyzer:
|
||||||
if volume_msg:
|
if volume_msg:
|
||||||
volume_filter = await self._get_volume_filter()
|
volume_filter = await self._get_volume_filter()
|
||||||
transcode_command.append(volume_filter)
|
transcode_command.append(volume_filter)
|
||||||
|
if audio_msg == "Sample rate out of range":
|
||||||
|
transcode_command.append(" -ar 48000 ")
|
||||||
else:
|
else:
|
||||||
transcode_command.append("copy")
|
transcode_command.append("copy")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue