1 Star 0 Fork 5

hucheng27/BAT_FFMPEG

forked from jingcheng/BAT_FFMPEG 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Video-Volume.bat 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
KnightDanila 提交于 2018-10-09 21:09 . Volume gainer - test only updates :bird:
REM https://trac.ffmpeg.org/wiki/AudioVolume
REM https://superuser.com/questions/323119/how-can-i-normalize-audio-using-ffmpeg
REM http://breakthebit.org/post/53570840966/how-to-increase-volume-in-a-video-without
REM https://superuser.com/questions/31176/increase-volume-of-an-mkv-video-from-linux-terminal
REM https://www.maketecheasier.com/ffmpeg-commands-media-file-conversions/
@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 ffmpeg.exe -i %%x -vcodec libx264 -acodec aac "%%~nx_output_AAC.mp4"
REM ffmpeg.exe -i %%x -vcodec libx264 -acodec ac3 "%%~nx_output_AC3.mp4"
REM -acodec libfaac -ac 2 -ar 44100 -ab 80k -vcodec libx264 -s 640x480 -b 670k -g 30 -r 15 output.mov
REM ffmpeg.exe -i %%x -an -c:v mjpeg -s 320x240 -f mov "%%~nx_output_AC3.mov"
REM FOR PANASONIC
ffmpeg.exe -i %%x -acodec pcm_u8 -map_channel 0.1.0 -ar 8000 -q:a 30 -r 10 -c:v mjpeg -s 320x240 "%%~nx_output_AC3.mov"
REM ffmpeg -ss 00:30:50 -i %%x -acodec pcm_u8 -map_channel 0.1.0 -ar 8000 -q:a 30 -r 10 -c:v mjpeg -s 320x240 "%%~nx_output_CUT.mov"
REM ffmpeg.exe -i %%x -acodec pcm_u8 -map_channel 0.1.0 -ar 8000 -q:a 30 -r 10 -c:v mjpeg -q:v 30 -s 320x240 "%%~nx_output_AC3.mov"
REM ffmpeg.exe -i %%x -acodec pcm_u8 -map_channel 0.1.0 -ar 8000 -r 10 -c:v mjpeg -s 320x240 -f mov "%%~nx_output_AC3.mov"
REM ffmpeg.exe -i %%x -acodec pcm_u8 -map_channel 0.1.0 -ar 8000 -r 10 -c:v mjpeg -s 320x240 -f mov -metadata creation_time="2018-01-27 19:07:26" "%%~nx_output_AC3.mov"
REM ffmpeg.exe -i %%x -an -pix_fmt yuv420p -c:v mjpeg -q:v 3 -s 320x240 "%%~nx_output_AC3.mov"
REM ffmpeg.exe -i %1 -vcodec libx264 -crf 30 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

搜索帮助