must be correct audio

This commit is contained in:
q
2024-12-13 15:14:23 +02:00
parent 8902e0ad16
commit 65649a079e

View File

@@ -382,7 +382,7 @@ class Marker:
to_ft = self.format_time(to_ts)
from_str=str(from_ts).zfill(padlen)
to_str=str(to_ts).zfill(padlen)
print(f'ffmpeg -i "{src_name}" {cropstr}-c:v mpeg2video -q:v 3 -g 1 -c:a copy -ss {from_ft} -to {to_ft} "{tgt_name}.trim.{from_str}-{to_str}.mpeg"')
print(f'ffmpeg -i "{src_name}" {cropstr}-c:v mpeg2video -q:v 3 -g 1 -c:a libmp3lame -ar 44100 -b:a 192k -ss {from_ft} -to {to_ft} "{tgt_name}.trim.{from_str}-{to_str}.mpeg"')
def save_timestamps(self):