From 0c6534595bc18f5e62eaa71a8f216e2d9a5b4e20 Mon Sep 17 00:00:00 2001 From: Ren Tatsumoto Date: Fri, 8 Mar 2024 19:17:48 +0300 Subject: [PATCH] trim timestamps down to milliseconds --- encoder.lua | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/encoder.lua b/encoder.lua index 6bae4f4..05753fa 100644 --- a/encoder.lua +++ b/encoder.lua @@ -10,6 +10,11 @@ local h = require('helpers') local utils = require('mp.utils') local this = {} +local function toms(timestamp) + --- Trim timestamp down to milliseconds. + return string.format("%.3f", timestamp) +end + local function construct_output_filename_noext() local filename = mp.get_property("filename") -- filename without path @@ -71,8 +76,8 @@ this.mkargs_video = function(out_clip_path) table.concat { '--sub-font=', this.config.sub_font }, table.concat { '--ovc=', this.config.video_codec }, table.concat { '--oac=', this.config.audio_codec }, - table.concat { '--start=', this.timings['start'] }, - table.concat { '--end=', this.timings['end'] }, + table.concat { '--start=', toms(this.timings['start']) }, + table.concat { '--end=', toms(this.timings['end']) }, table.concat { '--aid=', mp.get_property("aid") }, -- track number table.concat { '--mute=', mp.get_property("mute") }, table.concat { '--volume=', mp.get_property('volume') }, @@ -117,8 +122,8 @@ this.mkargs_audio = function(out_clip_path) '--oacopts-add=application=voip', '--oacopts-add=compression_level=10', table.concat { '--oac=', this.config.audio_codec }, - table.concat { '--start=', this.timings['start'] }, - table.concat { '--end=', this.timings['end'] }, + table.concat { '--start=', toms(this.timings['start']) }, + table.concat { '--end=', toms(this.timings['end']) }, table.concat { '--volume=', mp.get_property('volume') }, table.concat { '--aid=', mp.get_property("aid") }, -- track number table.concat { '--oacopts-add=b=', this.config.audio_bitrate },