demlo: Add 'ogg.lua' script

master
Pierre Neidhardt 2017-01-29 16:25:14 +01:00
parent d7b7d72764
commit e3fc2deee0
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
-- Force output to OGG.
local OGGMAX = 500000
local bitrate = bps or 9999999
local OGGMAX = 500000
if bitrate > input.bitrate then
bitrate = input.bitrate
end
output.parameters = {'-c:a', 'libvorbis', '-b:a', tostring(math.min(bitrate, OGGMAX))}
output.format = 'ogg'