Thank you very very much Sneaker!
It worked!!!!
Thanks once again!
+ Reply to Thread
Results 181 to 203 of 203
Thread
-
Hello,
Could someone possibly help me with a code for converting 10bit 265 to 8bit 265? I have tried a ton of things and i can’t get it to work. This is for the ffmpeg Batch converter. Thanks in advance. -
-
-
-
@Baldrick
you want to change the zeranoe link on the first post to something like https://github.com/BtbN/FFmpeg-Builds/releases ? -
Nope, but to https://www.videohelp.com/software/ffmpeg
-
OK, I have this:
for %A in ("*.*") do ffmpeg -i "input\%~nA.*" -c:v libx264 -profile:v main -crf 16 -filter:v "crop=702:576:9:0,scale=768:576,setsar=1" -c:a aac -b:a 384k "output\%~nA.mp4"
And it spews out this error:
C:\Users\HP\Documents\xxx- miniDV\ffmpeg.*: Invalid argument
C:\Users\HP\Documents\xxx- miniDV\ffplay.*: Invalid argument
C:\Users\HP\Documents\xxx- miniDV\ffprobe.*: Invalid argument
or
C:\Users\HP\Documents\xxx- miniDV\ffmpeg: No such file or directory
C:\Users\HP\Documents\xxx- miniDV\ffplay: No such file or directory
C:\Users\HP\Documents\xxx- miniDV\ffprobe: No such file or directory
Any ideas?Last edited by SF01; 8th Dec 2021 at 10:24.
-
Maybe blank spaces in the path, no idea. Anyway, you may wish to try with with FFmpeg Batch AV Converter, batch ffmpeg made easy (for Windows).
-
Blank spaces are dealt with by using "" in the paths.
I don't need another piece of software, if this one as working fine. -
Hello!
FFmpeg Butch AV converter is a great tool.
But I miss many functions which are good to work with in the console.
Especially the function SPLITT is missing in parts!
Split in time and size (MB) is available, but how can I split a directory with multiple videos e.g. into 6 parts???
[Attachment 62376 - Click to enlarge]
Also I miss the function to cut out a part of e.g. 1 minute from the video in the middle.
With TRIM I can only cut the beginning and end, but how can I cut exactly from the time at the beginning a part of e.g. 1 minute after?
Maybe someone can help. -
Hi, the trim feature allows to cut from specific time markers, for example from 00:01:00 to 00:02:00 for every file on the list. You need to uncheck "Start/end" below.
The split feature cannot trim yet by specific numbre of chunks. I can't find a case in which this coul be useful, depending on source file size, output chunks will be of different sizes.
-
I need something big... I need to merge like 2 audios in just one, mono, but using batch and converting these in subdirectores
I have this to make conversion in subdirectores, using batch file:
@echo off & setlocal
FOR /r %%i in (*.ogg) do ffmpeg -i "%%~fi" "%%~dpni666.ogg"
pause
I have this to merge two audios
ffmpeg -i "%%~fi" drums.ogg -i "%%~fi" guitar.ogg -filter_complex amix=inputs=2:duration=longest -ac 1 -ar 44100 -vol 1500 "%%~dpni666.ogg"
But when I use it with the previous command it doesn't work properly, I think it happens due to the subdirectores conversion. What can I do? -
So you have audios?
And not using DAW?
Multiple directories could be problematic. -
-
can someone please help me to make a batch script for following condition.
i have bunch of mkv files, some audio bitrate may be 640kbps some might have 128kbps. i want to create a batch script if audio bitrate is higher than 256kbps batch script will run.
Code:for %%a in ("*.*") do ffmpeg -i "%%a" -c:v libx264 -preset slow -crf 20 -c:a libvo_aacenc -b:a 256k "newfiles\%%~na.mp4" pause
Similar Threads
-
Best Way To Batch Convert DVR-MS and WTV Files
By dj4monie in forum Video ConversionReplies: 39Last Post: 25th Jun 2012, 18:17 -
Best way to batch convert xvid/avi files to mkv/x264 files?
By gaikokujinkyofusho in forum Video ConversionReplies: 1Last Post: 13th Jan 2012, 06:31 -
batch convert .mpg (MPEG2) files?
By shun in forum Video ConversionReplies: 2Last Post: 8th Jan 2009, 08:44 -
Hi, need a program to batch multiplex.
By mmdmmd in forum AudioReplies: 2Last Post: 18th Oct 2008, 13:50 -
Hi all, I need program to batch de-multiplex mpg files with 2 audio tracks
By mmdmmd in forum AudioReplies: 4Last Post: 14th Oct 2008, 15:57