在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → h264转mp4 VC代码

h264转mp4 VC代码

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.63M
  • 下载次数:11
  • 浏览次数:231
  • 发布时间:2020-09-07
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
h264转mp4 vc代码,学习用途。从其他相关代码转来,做了些修改。
【实例截图】
【核心代码】
SingleMp4
└── SingleMp4
├── SingleMp4
│   ├── c061988_ISO_IEC_14496-12_2012.pdf
│   ├── include
│   │   ├── libplatform
│   │   │   ├── endian.h
│   │   │   ├── impl.h
│   │   │   ├── io
│   │   │   │   ├── File.cpp
│   │   │   │   ├── File.h
│   │   │   │   ├── File_posix.cpp
│   │   │   │   ├── FileSystem.cpp
│   │   │   │   ├── FileSystem.h
│   │   │   │   ├── FileSystem_posix.cpp
│   │   │   │   ├── FileSystem_win32.cpp
│   │   │   │   └── File_win32.cpp
│   │   │   ├── number
│   │   │   │   ├── random.h
│   │   │   │   ├── random_posix.cpp
│   │   │   │   └── random_win32.cpp
│   │   │   ├── platform_base.h
│   │   │   ├── platform.h
│   │   │   ├── platform_win32.cpp
│   │   │   ├── platform_win32.h
│   │   │   ├── platform_win32_impl.h
│   │   │   ├── process
│   │   │   │   ├── process.h
│   │   │   │   ├── process_posix.cpp
│   │   │   │   └── process_win32.cpp
│   │   │   ├── prog
│   │   │   │   ├── option.cpp
│   │   │   │   └── option.h
│   │   │   ├── sys
│   │   │   │   ├── error.cpp
│   │   │   │   └── error.h
│   │   │   ├── time
│   │   │   │   ├── time.cpp
│   │   │   │   ├── time.h
│   │   │   │   ├── time_posix.cpp
│   │   │   │   └── time_win32.cpp
│   │   │   └── warning.h
│   │   ├── mp4v2
│   │   │   ├── chapter.h
│   │   │   ├── file.h
│   │   │   ├── file_prop.h
│   │   │   ├── general.h
│   │   │   ├── isma.h
│   │   │   ├── itmf_generic.h
│   │   │   ├── itmf_tags.h
│   │   │   ├── mp4v2.h
│   │   │   ├── platform.h
│   │   │   ├── project.h
│   │   │   ├── sample.h
│   │   │   ├── streaming.h
│   │   │   ├── track.h
│   │   │   └── track_prop.h
│   │   └── src
│   │   ├── 3gp.cpp
│   │   ├── atom_ac3.cpp
│   │   ├── atom_amr.cpp
│   │   ├── atom_avc1.cpp
│   │   ├── atom_avcC.cpp
│   │   ├── atom_chpl.cpp
│   │   ├── atom_colr.cpp
│   │   ├── atom_d263.cpp
│   │   ├── atom_dac3.cpp
│   │   ├── atom_damr.cpp
│   │   ├── atom_dref.cpp
│   │   ├── atom_elst.cpp
│   │   ├── atom_enca.cpp
│   │   ├── atom_encv.cpp
│   │   ├── atom_free.cpp
│   │   ├── atom_ftab.cpp
│   │   ├── atom_ftyp.cpp
│   │   ├── atom_gmin.cpp
│   │   ├── atom_hdlr.cpp
│   │   ├── atom_hinf.cpp
│   │   ├── atom_hnti.cpp
│   │   ├── atom_href.cpp
│   │   ├── atom_mdat.cpp
│   │   ├── atom_mdhd.cpp
│   │   ├── atom_meta.cpp
│   │   ├── atom_mp4s.cpp
│   │   ├── atom_mp4v.cpp
│   │   ├── atom_mvhd.cpp
│   │   ├── atom_nmhd.cpp
│   │   ├── atom_ohdr.cpp
│   │   ├── atom_pasp.cpp
│   │   ├── atom_root.cpp
│   │   ├── atom_rtp.cpp
│   │   ├── atom_s263.cpp
│   │   ├── atom_sdp.cpp
│   │   ├── atom_sdtp.cpp
│   │   ├── atoms.h
│   │   ├── atom_smi.cpp
│   │   ├── atom_sound.cpp
│   │   ├── atom_standard.cpp
│   │   ├── atom_stbl.cpp
│   │   ├── atom_stdp.cpp
│   │   ├── atom_stsc.cpp
│   │   ├── atom_stsd.cpp
│   │   ├── atom_stsz.cpp
│   │   ├── atom_stz2.cpp
│   │   ├── atom_text.cpp
│   │   ├── atom_tfhd.cpp
│   │   ├── atom_tkhd.cpp
│   │   ├── atom_treftype.cpp
│   │   ├── atom_trun.cpp
│   │   ├── atom_tx3g.cpp
│   │   ├── atom_udta.cpp
│   │   ├── atom_url.cpp
│   │   ├── atom_urn.cpp
│   │   ├── atom_uuid.cpp
│   │   ├── atom_video.cpp
│   │   ├── atom_vmhd.cpp
│   │   ├── bmff
│   │   │   ├── bmff.h
│   │   │   ├── impl.h
│   │   │   ├── typebmff.cpp
│   │   │   └── typebmff.h
│   │   ├── cmeta.cpp
│   │   ├── descriptors.cpp
│   │   ├── descriptors.h
│   │   ├── enum.h
│   │   ├── enum.tcc
│   │   ├── exception.cpp
│   │   ├── exception.h
│   │   ├── impl.h
│   │   ├── isma.cpp
│   │   ├── itmf
│   │   │   ├── CoverArtBox.cpp
│   │   │   ├── CoverArtBox.h
│   │   │   ├── generic.cpp
│   │   │   ├── generic.h
│   │   │   ├── impl.h
│   │   │   ├── itmf.h
│   │   │   ├── Tags.cpp
│   │   │   ├── Tags.h
│   │   │   ├── type.cpp
│   │   │   └── type.h
│   │   ├── log.cpp
│   │   ├── log.h
│   │   ├── mp4array.h
│   │   ├── mp4atom.cpp
│   │   ├── mp4atom.h
│   │   ├── mp4container.cpp
│   │   ├── mp4container.h
│   │   ├── mp4.cpp
│   │   ├── mp4descriptor.cpp
│   │   ├── mp4descriptor.h
│   │   ├── mp4file.cpp
│   │   ├── mp4file.h
│   │   ├── mp4file_io.cpp
│   │   ├── mp4info.cpp
│   │   ├── mp4property.cpp
│   │   ├── mp4property.h
│   │   ├── mp4track.cpp
│   │   ├── mp4track.h
│   │   ├── mp4util.cpp
│   │   ├── mp4util.h
│   │   ├── ocidescriptors.cpp
│   │   ├── ocidescriptors.h
│   │   ├── odcommands.cpp
│   │   ├── odcommands.h
│   │   ├── qosqualifiers.cpp
│   │   ├── qosqualifiers.h
│   │   ├── qtff
│   │   │   ├── coding.cpp
│   │   │   ├── coding.h
│   │   │   ├── ColorParameterBox.cpp
│   │   │   ├── ColorParameterBox.h
│   │   │   ├── impl.h
│   │   │   ├── PictureAspectRatioBox.cpp
│   │   │   ├── PictureAspectRatioBox.h
│   │   │   └── qtff.h
│   │   ├── rtphint.cpp
│   │   ├── rtphint.h
│   │   ├── src.h
│   │   ├── text.cpp
│   │   ├── text.h
│   │   └── util.h
│   ├── Main.cpp
│   ├── moov.mp4
│   ├── Mp4Encoder.cpp
│   ├── Mp4Encoder.h
│   ├── MyMp4V2
│   │   ├── inttypes.h
│   │   ├── MyMp4.cpp
│   │   ├── MyMp4.h
│   │   └── MyMp4Tk.h
│   ├── SingleMp4.rar
│   ├── SingleMp4.vcxproj
│   ├── SingleMp4.vcxproj.filters
│   └── SingleMp4.vcxproj.user
├── SingleMp4.sln
└── SingleMp4.suo

16 directories, 180 files

标签:

实例下载地址

h264转mp4 VC代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警