# media_exporter **Repository Path**: jack888/media_exporter ## Basic Information - **Project Name**: media_exporter - **Description**: 视频导出模块,导出格式为mp4,可能输入一路视频,三路声音 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-05-24 - **Last Updated**: 2021-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # media_exporter #### 编译说明 #####1,修改MediaExporter下的CMakeLists.txt中FFMPEG_DEV_DIR变量,指向你本机 ffmpeg目录,可以去ffmpeg官网下载已经编译好的二进制版本,我使用的是ffmpeg4.3 #####2, 使用CLion打开就可以直接编译了 #####3, 使用以下命令生成visual studio工程 在命令行模式下,先转到工程目录 cmake build cd build //使用系统默认visual c++ cmake .. //vs2013 cmake .. -G "Visual Studio 12 2013" //vs2015 cmake .. -G "Visual Studio 14 2015" //vs2017 cmake .. -G "Visual Studio 15 2017"