本站首页    管理页面    写新日志    退出


«September 2025»
123456
78910111213
14151617181920
21222324252627
282930


公告
 本博客在此声明所有文章均为转摘,只做资料收集使用。

我的分类(专题)

日志更新

最新评论

留言板

链接

Blog信息
blog名称:
日志总数:1304
评论数量:2242
留言数量:5
访问次数:7618664
建立时间:2006年5月29日




[视频处理]Hooking Up The SMPTE VC-1 Decoder In FFmpeg
软件技术

lhwork 发表于 2007/2/5 20:34:12

Some people have asked me for my code to make the SMPTE VC-1 reference decoder work with FFmpeg, slow though it may be. I suppose I could make a patch. But the official version of FFmpeg is whatever happens to be in CVS at the current moment. So any patch I could produce would work for maybe a day. So get ready to do a little editing on your local FFmpeg CVS tree. The steps: pro


阅读全文(3042) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]让ffmpeg支持wmv9的补丁
软件技术

lhwork 发表于 2007/2/5 20:30:41

Hooking Up The SMPTE VC-1 Decoder In FFmpeg
Filed under:
Open Source Multimedia — Multimedia Mike @ 5:22 pm Some people have asked me for my code to make the

阅读全文(3623) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]ffmpeg参数使用说明
软件技术

lhwork 发表于 2007/2/5 18:16:00

ffmpeg.exe -i F:闪客之家闪客之歌.mp3 -ab 56 -ar 22050 

阅读全文(3540) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]简单安装ffmpeg
软件技术

lhwork 发表于 2007/2/5 17:11:53

先要下载svn
官方地址:http://subversion.tigris.org/
镜像站点:http://summersoft.fay.ar.us/pub/subversion/latest/

http://subversion.tigris.org/downloads/subversion-1.3.0.tar.gz

下载 Lame ,支持MP3用的
http://sourceforge.net/projects/lame

then compile and install:

$ ./configure
$ make
$ make install

测试lame是否安装好 $ lame --help


获取ffmpeg的最新版本
svn checkout svn://svn.mplayerhq.hu/ffmpeg/

阅读全文(2117) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]FFMPEG在LINUX下的编译
软件技术

lhwork 发表于 2007/2/5 14:59:53

FFMPEG项目现在只是发展到了0.4.9版本,不过别小看这个0.4.9,已经开始了1年多的项目了。 和PHP类似,这个类库也依赖了无数的第三方类库,FFMPEG做的很重要的一件事情,就是作为一个胶水,把这些东西 都粘合到一起。 最痛苦的事情莫过于在WINDOWS上编译FFMPEG,需要安装无数的东西(Cygwin那一套)。 同样,在Redhat9 上的编译也是痛苦的。因为FFMPEG用到的某些类库要求高版本的AUTOMAKE之类的东西。 因此,还是用回RHEL 4.2版本的LINUX上编译为妥。 1。准备所有的软件包 首先是FFPMEG,从SVN里边获取最新的源代码 svn checkout svn://

阅读全文(1875) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]Ming video/streaming examples
软件技术

lhwork 发表于 2007/2/5 12:36:11

1. Creating FLV files
For more information about Macromedia's FLV format see Macromedia's Video TechNote.
To convert avi/mpeg files to Macromedia's FLV format is using ffmpeg.

The following example creates a FLV fil

阅读全文(2220) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]转换视频为flv文件过程记录
软件技术

lhwork 发表于 2007/2/5 12:26:25

  1/ 从 http://ffdshow.faireal.net/mirror/ffmpeg/ 下载最新版本的 FFMpeg.exe (才知道.7z也是种压缩格式)
                            2/ 解压缩到本地c:\FFMpeg.

                           &nb

阅读全文(2809) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]FFMPEG
软件技术

lhwork 发表于 2007/2/5 12:24:11

This tutorial is about transcoding video fom one codec into another using FFMPEG. I got deeper into FFMPEG when I wanted to transcode into FLV (Flash Video) and it works very well. I developed the Riva FLV Encoder, a GUI for FFMPEG. Up

阅读全文(3543) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理]FFMPEG编译指南
软件技术

lhwork 发表于 2007/2/5 12:22:32

We install the Minimalist GNU for Windows MinGW (Compiler) and MSYS (Minimal SYStem) which is a kind of unix-shell to access the MinGW-commands. Next we download, compile and install Lame, an open-source mp3-codec, with MSYS. Next we install WinCVS and checkout the latest cvs-release of FFMPEG. Finally we compile ffmpeg and I will show a few examples how to work with Flash Video (FLV).

Download MinGW " MSYS current releases (Window Exe Binaries MSYS-1.0.10.ex

阅读全文(4343) | 回复(0) | 编辑 | 精华 | 删除
 


[视频处理][转载]从FLV中截图以及相关PHP代码
软件技术

lhwork 发表于 2007/2/5 12:21:21

从FLV中截图以及相关PHP代码

使用-ss参数 作用(time_off set the start time offset),可以从指定时间点开始转换任务。如:
转换文件格式的同时抓缩微图:
ffmpeg -i "test.avi" -y -f image2 -ss 8 -t 0.001 -s 350x240 'test.jpg'
对已有flv抓图:
ffmpeg -i "test.flv" -y -f image2 -ss 8 -t 0.001 -s 350x240 'test.jpg'
-ss后跟的时间单位为秒 $streamPath = "./test.flv";
$newName = "myConvertedPic.jpg";
$imgW = 320;
$imgH = 240;
$imgQuality = 80;
$resultPath = "http://www.meinserver.de/snapit/".$newName.".jpg";
exec ("flv2jpg

阅读全文(2321) | 回复(0) | 编辑 | 精华 | 删除
 


« 1 2 3 4 »



站点首页 | 联系我们 | 博客注册 | 博客登陆

Sponsored By W3CHINA
W3CHINA Blog 0.8 Processed in 0.094 second(s), page refreshed 144792980 times.
《全国人大常委会关于维护互联网安全的决定》  《计算机信息网络国际联网安全保护管理办法》
苏ICP备05006046号