從檔案中讀取
從本地檔案系統開啟媒體檔案。
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);