1 Star 0 Fork 5

hucheng27/BAT_FFMPEG

forked from jingcheng/BAT_FFMPEG 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Video-ToMP4_x264.bat 916 Bytes
一键复制 编辑 原始数据 按行查看 历史
KnightDanila 提交于 2019-01-20 20:03 . UpDates :bird:
@echo off
echo %CD%
echo %~dp0
cd /d %~dp0
REM For first file
REM %1
REM For multiple files
echo %*
set COUNTER=0
for %%x in (%*) do (
echo %%x
set /A COUNTER+=1
)
echo COUNTER = %COUNTER%
if %COUNTER% GTR 0 (
if %COUNTER% EQU 1 (
echo _____GET ONE FILE_____
) else (
echo _____GET MULTI FILES: %COUNTER% files_____
)
for %%x in (%*) do (
REM //////////////////// MAIN \\\\\\\\\\\\\\\\\\\\\\\\\
REM BEST QUALITY FOR
REM ffmpeg.exe -i %%x -vcodec libx264 -acodec aac "%%~nx_output_AAC.mp4"
REM ffmpeg.exe -i %%x -vcodec libx264 -acodec ac3 "%%~nx_output_x264_AC3.mp4"
REM BEST QUALITY FOR - MOV Photocamera Lumix
ffmpeg.exe -i %%x -vcodec libx264 -c:a ac3 -ar 48000 "%%~nx_output_MP4_AC3_48KHz.mp4"
REM ffmpeg.exe -i %%x -vcodec libx264 -c:a ac3 -b:a 128k "%%~nx_output_CRF0.mp4"
REM ffmpeg.exe -i %1 -vcodec libx264 -crf 20 output.mp4
)
) else (
echo _____GET NO ONE FILES_____
)
pause
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/hucheng27/BAT_FFMPEG.git
git@gitee.com:hucheng27/BAT_FFMPEG.git
hucheng27
BAT_FFMPEG
BAT_FFMPEG
master

搜索帮助