ques / beer-media-server2

Automatically exported from code.google.com/p/beer-media-server2
0 stars 0 forks source link

$_cmd_seek_ffmpeg_$が大きな値を返す #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago

Original comment by malcome...@gmail.com on 7 Jan 2013 at 11:16

GoogleCodeExporter commented 9 years ago
Version 2.0.130109で対処しました。

Original comment by malcome...@gmail.com on 9 Jan 2013 at 8:48