美文网首页
FFmpeg转封装(1)

FFmpeg转封装(1)

作者: Goning | 来源:发表于2019-01-22 18:03 被阅读2次

MP4在FFmpeg中的Demuxer


查看MP4文件的Demuxer信息
ffmpeg -h demuxer=mp4
ffmpeg version 4.1 Copyright (c) 2000-2018 the FFmpeg developers
  built with Apple LLVM version 10.0.0 (clang-1000.11.45.5)
  configuration: 
  libavutil      56. 22.100 / 56. 22.100
  libavcodec     58. 35.100 / 58. 35.100
  libavformat    58. 20.100 / 58. 20.100
  libavdevice    58.  5.100 / 58.  5.100
  libavfilter     7. 40.101 /  7. 40.101
  libswscale      5.  3.100 /  5.  3.100
  libswresample   3.  3.100 /  3.  3.100
Demuxer mov,mp4,m4a,3gp,3g2,mj2 [QuickTime / MOV]:
    Common extensions: mov,mp4,m4a,3gp,3g2,mj2.
mov,mp4,m4a,3gp,3g2,mj2 AVOptions:
  -use_absolute_path <boolean>    .D.V..... allow using absolute path when opening alias, this is a possible security issue (default false)
  -seek_streams_individually <boolean>    .D.V..... Seek each stream individually to the to the closest point (default true)
  -ignore_editlist   <boolean>    .D.V..... Ignore the edit list atom. (default false)
  -advanced_editlist <boolean>    .D.V..... Modify the AVIndex according to the editlists. Use this option to decode in the order specified by the edits. (default true)
  -ignore_chapters   <boolean>    .D.V.....  (default false)
  -use_mfra_for      <int>        .D.V..... use mfra for fragment timestamps (from -1 to 2) (default auto)
     auto                         .D.V..... auto
     dts                          .D.V..... dts
     pts                          .D.V..... pts
  -export_all        <boolean>    .D.V..... Export unrecognized metadata entries (default false)
  -export_xmp        <boolean>    .D.V..... Export full XMP metadata (default false)
  -activation_bytes  <binary>     .D....... Secret bytes for Audible AAX files
  -audible_fixed_key <binary>     .D....... Fixed key used for handling Audible AAX files
  -decryption_key    <binary>     .D....... The media decryption key (hex)
  -enable_drefs      <boolean>    .D.V..... Enable external track support. (default false)

相关文章

  • FFmpeg转封装(remuxing)

    目录 参考 转封装流程介绍 FFmpeg流程 示例代码 1. 参考 [1] FFmpeg\doc\examples...

  • ffmpeg封装和转码参数说明

    ffmpeg封装参数 ffmpeg的封装转换(转封装)功能包含在AVFormat模块中,通过libavformat...

  • FFmpeg转封装(1)

    MP4在FFmpeg中的Demuxer 查看MP4文件的Demuxer信息

  • ffmpeg # 转封装 函数

    转封装中,用av_read_frame来读取文件的音视频数据。其实在avformat_find_stream_in...

  • FFmpeg转封装(3)

    FLV在FFmpeg中的Muxer 查看FLV文件的Muxer信息 转FLV 生成带关键索引的FLV ffprob...

  • FFmpeg转封装(5)

    FFmpeg使用segment参数进行切片 1.segment_format指定切片文件的格式 将一个MP4文件切...

  • FFmpeg转封装(6)

    FFmpeg使用ss与t参数进行切片 1.使用ss指定剪切开头部分 从一个视频文件的第10秒钟开始截取内容 使用f...

  • FFmpeg转封装(2)

    MP4在FFmpeg中的Muxer faststart参数使用案例 1.默认情况下ffmpeg生成moov是在md...

  • FFmpeg转封装(7)

    音视频文件音视频流抽取 1.FFmpeg抽取音视频文件中的AAC音频流 2.FFmpeg抽取音视频文件中的H.26...

  • FFmpeg转封装(8)

    系统资源使用情况 FFmpeg转封装时CPU使用情况 使用top命令查看CPU使用率 FFmpeg转码时CPU使用...

网友评论

      本文标题:FFmpeg转封装(1)

      本文链接:https://www.haomeiwen.com/subject/rlzidqtx.html