
视频直播
文章平均质量分 56
sayyy
这个作者很懒,什么都没留下…
展开
-
如何支持h.265视频
略原创 2023-10-20 11:28:40 · 3118 阅读 · 0 评论 -
ffmpeg安装遇错:nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.
前言centos 7源码编译安装ffmpeg错误编译FFMPEG时,出现了错误 nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.。原因这是因为 FFMPEG为了提高编译速度,使用了汇编指令,如MMX和SSE等。如果系统中没有yasm指令的话,就会该错误。解决办法安装yasm。安装yasmWindows系统安装yasm如果是Windows系统, 从网上下载一个 yasm.exe 并安装原创 2022-04-22 10:34:38 · 9369 阅读 · 1 评论 -
windows安装ffmpeg
前言win10官网http://ffmpeg.org/源码GITHUB:https://gitee.com/mirrors/ffmpeg.gitGITEE:https://github.com/FFmpeg/FFmpeg.git下载安装包官网上给出2个可以下载到安装包的地址:https://www.gyan.dev/ffmpeg/builds/https://github.com/BtbN/FFmpeg-Builds/releases从 https://www.gyan.dev原创 2021-10-21 12:24:39 · 2395 阅读 · 0 评论 -
ffmpeg指令
查看版本shell> ffmpeg -versionMOV转MP4shell> ffmpeg -i demo.mov -vcodec libx264 -preset fast -crf 20 -y -acodec libmp3lame -ab 128k demo.mp4参考这里,这里。ffmpeg——关于视频压缩在不改变视频尺寸(分辨率不变)、视频和音频编码不变(视频格式不变,所以这两个编码不变)、帧率不变(保证画面连贯度,所以帧率不变)的情况下,通过改变比特率,使得视频文件体积原创 2021-10-21 11:52:36 · 213 阅读 · 0 评论 -
【流媒体服务器的搭建】2. 源码编译安装ffmpeg
前言centos 7ffmpeg 编译时,打开H264功能时,必须已安装H264(参考这里)。否则遇错:ERROR: libx264 not found。官网http://ffmpeg.org/源码GITHUB:https://gitee.com/mirrors/ffmpeg.gitGITEE:https://github.com/FFmpeg/FFmpeg.git源码编译安装ffmpegshell> cd /opt# 下载源码shell> git clone http原创 2021-09-22 09:42:44 · 493 阅读 · 0 评论 -
【流媒体服务器的搭建】1. 源码编译安装x264
前言centos 7ffmpeg 编译时,打开H264功能时,必须已安装H264。否则遇错:ERROR: libx264 not found源码官网GIT: https://code.videolan.org/videolan/x264GITEE镜像: https://gitee.com/mirrors/x264.git源码编译安装x264shell> cd /opt# 下载源码shell> git clone https://gitee.com/mirrors/x264.原创 2021-09-18 17:55:05 · 530 阅读 · 0 评论 -
在线预览视频/直播:m3u8、rmpt、mp4、flv
m3u8play在线预览m3u8格式的流媒体。https://www.m3u8play.com/?play=https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8,替换play的值。chplayer可以预览多种格式的流媒体。http://www.chplayer.com/examples/player.html?videourl=http://cdn.theoplayer.com/video/star_wars_episode原创 2021-09-18 11:18:41 · 81660 阅读 · 0 评论