Untitled
unknown
batchfile
a month ago
320 B
2
Indexable
Never
@echo off setlocal enabledelayedexpansion set "output_directory=C:\Users\Videos" for /f "delims=" %%a in (lista.txt) do ( set "url=%%a" echo Baixando: !url! set "output_file=%output_directory%\%%~na.mp4" ffmpeg -i "!url!" -c copy "!output_file!" echo Concluído: !output_file! ) pause