实例介绍
mp4v2-2.0.0
【实例截图】
【核心代码】
4744300845390166687.rar
└── mp4v2-2.0.0
├── aclocal.m4
├── autoaux
│ ├── config.guess
│ ├── config.sub
│ ├── depcomp
│ ├── install-sh
│ ├── ltmain.sh
│ └── missing
├── configure
├── configure.ac
├── COPYING
├── doc
│ ├── Authors.txt
│ ├── BuildRepository.txt
│ ├── BuildSource.txt
│ ├── Documentation.txt
│ ├── GNUmakefile.mk
│ ├── man
│ │ └── man1
│ │ ├── mp4art.1
│ │ ├── mp4file.1
│ │ ├── mp4subtitle.1
│ │ └── mp4track.1
│ ├── ReleaseNotes.txt
│ └── ToolGuide.txt
├── GNUmakefile.am
├── GNUmakefile.in
├── include
│ └── mp4v2
│ ├── chapter.h
│ ├── file.h
│ ├── file_prop.h
│ ├── general.h
│ ├── isma.h
│ ├── itmf_generic.h
│ ├── itmf_tags.h
│ ├── mp4v2.h
│ ├── platform.h
│ ├── project.h
│ ├── project.h.in
│ ├── sample.h
│ ├── streaming.h
│ ├── track.h
│ └── track_prop.h
├── INSTALL
├── libplatform
│ ├── config.h.in
│ ├── 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_posix.h
│ ├── platform_win32.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
├── libutil
│ ├── crc.cpp
│ ├── crc.h
│ ├── Database.cpp
│ ├── Database.h
│ ├── impl.h
│ ├── other.cpp
│ ├── other.h
│ ├── Timecode.cpp
│ ├── Timecode.h
│ ├── TrackModifier.cpp
│ ├── TrackModifier.h
│ ├── util.h
│ ├── Utility.cpp
│ └── Utility.h
├── project
│ ├── project.m4
│ ├── project.m4.in
│ └── project.m4sugar
├── README
├── 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
├── util
│ ├── impl.h
│ ├── mp4art.cpp
│ ├── mp4chaps.cpp
│ ├── mp4extract.cpp
│ ├── mp4file.cpp
│ ├── mp4info.cpp
│ ├── mp4subtitle.cpp
│ ├── mp4tags.cpp
│ ├── mp4track.cpp
│ └── mp4trackdump.cpp
└── vstudio9.0
├── include
│ └── mp4v2
│ └── project.h
├── libmp4v2
│ └── libmp4v2.vcproj
├── mp4art
│ └── mp4art.vcproj
├── mp4chaps
│ └── mp4chaps.vcproj
├── mp4extract
│ └── mp4extract.vcproj
├── mp4file
│ └── mp4file.vcproj
├── mp4info
│ └── mp4info.vcproj
├── mp4subtitle
│ └── mp4subtitle.vcproj
├── mp4tags
│ └── mp4tags.vcproj
├── mp4track
│ └── mp4track.vcproj
├── mp4trackdump
│ └── mp4trackdump.vcproj
└── mp4v2.sln
34 directories, 230 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论