# fftranscoding **Repository Path**: walosx/fftranscoding ## Basic Information - **Project Name**: fftranscoding - **Description**: 简易命令行转码工具。将常见的音视频文件转化为h264编码的音视频文件(.h264, .mp4)。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-28 - **Last Updated**: 2023-11-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # fftranscoding ### *FFmpeg 安装* **建议用最新稳定版本** - [FFmpeg](https://ffmpeg.org/) - [Download](https://ffmpeg.org/download.html) - [Compilation Guide](https://trac.ffmpeg.org/wiki/CompilationGuide) - Ubuntu下apt安装 ``` sudo apt-get install ffmpeg \ libavutil-dev \ libavcodec-dev \ libavformat-dev \ libavdevice-dev \ libavfilter-dev \ libavresample-dev \ libswscale-dev \ libswresample-dev \ libx264-dev ``` ### *cmake 安装* - Ubuntu下apt安装 ``` sudo apt-get install cmake ``` ### *编译* ``` git clone https://gitee.com/walosx/fftranscoding.git cd fftranscoding ./build.sh ``` ### *测试* ``` ./fftranscoding in.mkv out.mp4 ./fftranscoding in.mp4 out.mp4 ```