use ytdl format

This commit is contained in:
Ren Tatsumoto 2021-04-14 19:11:15 +03:00
parent 52b0295de1
commit 90de5bf129

View file

@ -176,6 +176,7 @@ encoder.create_videoclip = function(clip_filename)
table.concat { '--ovcopts-add=crf=', config.video_quality },
table.concat { '--ovcopts-add=preset=', config.preset },
table.concat { '--vf-add=scale=', config.video_width, ':', config.video_height },
table.concat { '--ytdl-format=', mp.get_property("ytdl-format") },
table.concat { '-o=', clip_path }
}
end
@ -199,6 +200,7 @@ encoder.create_audioclip = function(clip_filename)
table.concat { '--volume=', mp.get_property('volume') },
table.concat { '--aid=', mp.get_property("aid") }, -- track number
table.concat { '--oacopts-add=b=', config.audio_bitrate },
table.concat { '--ytdl-format=', mp.get_property("ytdl-format") },
table.concat { '-o=', clip_path }
}
end