2007/11/20

[Linux][軟體] mplayer 播 flv 檔案(stream 方式)有問題

出自這裡

patch是:
Index: libmpdemux/demux_lavf.c
===================================================================
--- libmpdemux/demux_lavf.c (revision 23739)
+++ libmpdemux/demux_lavf.c (working copy)
@@ -142,6 +142,8 @@
pos += stream->end_pos;
else if(whence == SEEK_SET)
pos += stream->start_pos;
+ else if(whence == AVSEEK_SIZE)
+ return stream->end_pos;
else
return -1;

沒有留言:

[Windows] git-bash 底下的工具

因為工作轉到 Windows 平台上的關係,所以很多工具改到 Windows 上面運作,跟著在 TortoiseGit 底下使用 git-bash 來維護自己的專案原始碼。結果就是裝了前面提過的 auto-hotkey 使用熱鍵來提昇自己的平台操作速度; 但除了 hotkey...