-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathAudio-CutAccurateAndRecode.bat
More file actions
52 lines (42 loc) · 1.2 KB
/
Copy pathAudio-CutAccurateAndRecode.bat
File metadata and controls
52 lines (42 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
REM https://superuser.com/questions/499380/accurate-cutting-of-video-audio-with-ffmpeg
REM https://superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
REM https://stackoverflow.com/questions/15629490/how-to-cut-part-of-mp4-video-using-ffmpeg-without-losing-quality
@echo off
echo %CD%
echo %~dp0
cd /d %~dp0
ECHO. & ECHO ******* BAT FILE *******
ECHO %~nx0
ECHO ************************ & ECHO.
REM Creating the Results Directory - GIFs
set RESULTS_DIR="Audio"
call SYS_MakeResultsDir.bat %RESULTS_DIR%
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 -ss - start
REM -to - duration
REM hh:mm:ss.mss
REM Audio
REM ffmpeg -i %%x -ss 00:00:40.000 -to 00:01:20.000 -acodec copy -map_metadata 0 -map 0 "%%~nx_output_CUT%%~xx"
ffmpeg -i %%x -to 00:00:23.200 -acodec copy -map_metadata 0 -map 0 "%RESULTS_DIR%\%%~nx_output_CUT%%~xx"
)
) else (
echo _____GET NO ONE FILES_____
)
pause