
流媒体
Tony_Xian
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ts解析
https://blog.youkuaiyun.com/yansen_2010/article/details/40113509https://blog.youkuaiyun.com/ringboycn/article/details/87908111https://blog.youkuaiyun.com/u013354805/article/details/51578457转载 2020-12-31 16:46:09 · 452 阅读 · 0 评论 -
html播放hls
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>demo</title> <link href="https://vjs.zencdn.net/7.0.3/video-js.css" rel="stylesheet"></head> <body> &l..转载 2020-12-29 16:09:27 · 1315 阅读 · 0 评论 -
ffmpeg视频编码出现Unknown encoder ‘libx264‘问题
1.下载x264源码git clone http://git.videolan.org/git/x264.git2.解压源码 sudo tar -xjf last_x264.tar.bz2cd x264-snapshot-20180705-2245三部曲:./configuremakemake install运行./configure出现 错误:Found no assembler Minimum version is nasm-2.13 If you really ..转载 2020-10-10 11:14:30 · 4069 阅读 · 0 评论 -
安装ffmpeg
git clone https://git.ffmpeg.org/ffmpeg.git./configure --prefix=/usr/local/ffmpegubuntu 编译FFmgeg执行./configure 时会报此错误。nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.需要安装yasm的汇编编译器sudo apt-get install yasmmakemake install转载 2020-10-03 18:42:11 · 406 阅读 · 0 评论