logo
  • 教程列表
  • SO官方文档
  • 阅读媒体
    • 从记忆中读书
    • 从文件中读取
    • 从格式上下文中读取
    • 从 IOContext 中的 IStream 中读取
    • 在 IOContext 中的 IStream 中寻找
  1. StackOverflow 文档
  2. ffmpeg 教程
  3. 阅读媒体
  4. 从文件中读取

从文件中读取

Created: November-22, 2018

从本地文件系统打开媒体文件。

AVFormatContext *formatContext;

// Open the file
if(avformat_open_file(&formatContext, "path/to/file.ogg", NULL, NULL) < 0){
    // Error opening file
}

// Do something with the file

// Free resources
avformat_close_input(&formatContext);
  • 从格式上下文中读取
  • 从记忆中读书

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明