# x264-msvc **Repository Path**: lduml/x264-msvc ## Basic Information - **Project Name**: x264-msvc - **Description**: windows下静态编译的x264库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-30 - **Last Updated**: 2024-10-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 参考: ## x264 msvc windows编译 https://github.com/skzxcc/x264_source_analysis/blob/master/Windows%E7%BC%96%E8%AF%91%E7%AF%87.md ## MSVC编译 Ref:https://www.roxlu.com/2016/057/compiling-x264-on-windows-with-msvc ``` admin@mi MINGW64 /d/0_soft_study/x264-msvc $ tree . |-- x264-msvc-x64 | |-- bin | | `-- x264.exe | |-- include | | |-- x264.h | | `-- x264_config.h | `-- lib | |-- libx264.lib | `-- pkgconfig | `-- x264.pc `-- x264-msvc-x86 |-- bin | `-- x264.exe |-- include | |-- x264.h | `-- x264_config.h `-- lib |-- libx264.lib `-- pkgconfig `-- x264.pc 10 directories, 10 files admin@mi MINGW64 /d/0_soft_study/x264-msvc $ file x264-msvc*/bin/* x264-msvc-x64/bin/x264.exe: PE32+ executable (console) x86-64, for MS Windows, 7 sections x264-msvc-x86/bin/x264.exe: PE32 executable (console) Intel 80386, for MS Windows, 5 sections ```