What steps will reproduce the problem?
1. ffmpegを使用したトランスコードでRangeSeekを行う
What is the expected output? What do you see instead?
$_cmd_seek_ffmpeg_$が大きな値を返します
GetCmdRangeSeekの一部を以下のように変更すると、正常そうな��
�が返りました
if start then
local msec = t_sec / t_len * start
s = "-ss "..math.floor(msec / 1000).."."..(msec % 1000)
end
if len then
local msec = t_sec / t_len * len
s = s.." -t "..math.floor(msec / 1000).."."..(msec % 1000)
end
Original issue reported on code.google.com by pon...@gmail.com on 7 Jan 2013 at 10:23
Original issue reported on code.google.com by
pon...@gmail.com
on 7 Jan 2013 at 10:23