
视频编码
文章平均质量分 75
高大魔王就是我
我就是一个假前端啊,我只会 es5啊....
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
软编码Flv 到Mp4 容器(十一) fmp4 moof box详解
https://github.com/332065255/flv2fmp4代码库 - ftyp - moov - mvhd - trak - tkhd - mdia - mdhd - hdlr - minf - smhd原创 2017-05-17 11:31:04 · 6962 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(九) fmp4 stts stsc stsz stco box 讲解
https://github.com/332065255/flv2fmp4代码库先占坑(未完待续)原创 2017-05-17 11:25:16 · 4127 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(七) fmp4 mdia>hdlr box 和 mdia>minf> smhd 和dinf box讲解
https://github.com/332065255/flv2fmp4代码库先占坑(未完待续)原创 2017-05-17 11:21:56 · 2818 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(六) fmp4 moov>trak>tkhd box 和 moov>trak>mdia>mdhd box讲解
https://github.com/332065255/flv2fmp4代码库先占坑(未完待续)原创 2017-05-17 11:18:28 · 2442 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(五) fmp4 ftyp box 和moov>mvhd box详解
https://github.com/332065255/flv2fmp4代码库先占坑(未完待续)原创 2017-05-17 11:16:43 · 3132 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(三) flv metadata tag解析
https://github.com/332065255/flv2fmp4代码库(未完待续,作者在码代码)原创 2017-05-16 16:04:00 · 3653 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(二) flv tag拆解
https://github.com/332065255/flv2fmp4代码库接上篇文章,这章主要是对flv二进制数据进行tag拆解首先接上章的入口类import flvparse from './flv/flvParse'window.flvParse = { setFlv: function(uint8) { flvparse.setFlv(uint8); }原创 2017-05-16 15:47:18 · 2423 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(一)
这是一篇系列文章,用伪代码来一步步讲解flv 软编码到mp4本质上这是一篇对flv.js的解释,解释flv如何转换成mp4的现在网上关于mp4的资料不算少,但是从伪代码层级讲述一个容器到另一个容器的几乎没有,这也是为什么要写这么一篇系列文章.原创 2017-05-04 10:37:21 · 6478 阅读 · 0 评论 -
flv2fmp4解决方案
已经整合出一套剥离了io和mse操作的纯编码解决方案,可以认为那只是一个ffmpeg,别人可以自己实现io和mse github原创 2017-06-16 11:41:11 · 762 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(四) fmp4 总览和基础讲解
https://github.com/332065255/flv2fmp4代码库首先约定几个定义 mp4容器,是由box组成 box分为Container box 和full boxContainer box意思是容器box,里面会包含更多的box, 代表有moov box full box是单个box,里面不会包含更多的box,代表有ftyp box标准的box开头的4个字节(32位)为原创 2017-05-17 11:05:49 · 6710 阅读 · 0 评论 -
ISO BMFF Byte Stream Format
Table of Contents1. Introduction2. MIME-type parameters3. Initialization Segments4. Media Segments5. Random Access Points6. Acknowledgments7. Revision History1. IntroductionThis翻译 2017-05-05 11:22:14 · 3176 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(十三) fmp4 生成ftyp和moov所必要的 flv数据
https://github.com/332065255/flv2fmp4代码库软编码Flv 到Mp4 容器(一) 软编码Flv 到Mp4 容器(二) flv tag拆解 软编码Flv 到Mp4 容器(三) flv metadata tag解析 软编码Flv 到Mp4 容器(四) fmp4 总览和基础讲解 软编码Flv 到Mp4 容器(五) fmp4 ftyp box 和moov>mvhd原创 2017-05-17 11:34:47 · 4414 阅读 · 1 评论 -
MP4容器系列文章之STSD BOX
以下内容皆翻译自官方pdf,同时增加了自己的理解这篇文章讲述的是STSD BOX下的SampleEntry的编码格式8.16 Sample Description Box8.16.1 DefinitionBoxTypes: ‘stsd’Container: Sample Table Box (‘stbl’) Mandatory: YesQuantity: Exactly one8.16.2原创 2017-05-04 16:33:16 · 3490 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(八) fmp4 mdia>stbl>stsd box 讲解
https://github.com/332065255/flv2fmp4代码库先占坑(未完待续)原创 2017-05-17 11:23:19 · 2280 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(外传一)avcc box
avcc boxavcc是AVCDecoderConfigurationRecordAVC decoder configuration record定义aligned(8) class AVCDecoderConfigurationRecord { unsigned int(8) configurationVersion = 1; unsigned int(8) AVCProfileIndica原创 2017-05-23 18:06:11 · 3811 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(十二) fmp4 mdat box详解
https://github.com/332065255/flv2fmp4代码库 - ftyp - moov - mvhd - trak - tkhd - mdia - mdhd - hdlr - minf - smhd原创 2017-05-17 11:32:30 · 2704 阅读 · 0 评论 -
软编码Flv 到Mp4 容器(十) fmp4 mvex box 讲解
https://github.com/332065255/flv2fmp4代码库 - ftyp - moov - mvhd - trak - tkhd - mdia - mdhd - hdlr - minf - smhd原创 2017-05-17 11:27:18 · 1884 阅读 · 1 评论