Search found 7 matches
- 07 Mar 2019 15:17
- Forum: DOS Batch Forum
- Topic: nested for loop not working as hoped
- Replies: 2
- Views: 3183
Re: nested for loop not working as hoped
so cool and I am zero suprised that part of the solution was dbl quotes it makes sense to me now my mistake with the for needing to be standard and i had my path stuff all wrong I figured that out by doing the "echo my thing is -- yada yada and proper form of %%a ... can you believe I had that - for...
- 07 Mar 2019 11:35
- Forum: DOS Batch Forum
- Topic: nested for loop not working as hoped
- Replies: 2
- Views: 3183
nested for loop not working as hoped
friends I am attempting something that ...almost works I wish to batch the creation of mp4 from Prores mov from a nested dir up to a mp4 dir here is my dir structure My "start point is Directory of D:\ark inside there exist D:\ark\prores which contains many dir like so D:\ark\prores\ape D:\ark\prore...
- 04 Mar 2019 16:50
- Forum: DOS Batch Forum
- Topic: read a line from a txt file into a var , looping f.md5
- Replies: 2
- Views: 3463
Re: read a line from a txt file into a var , looping f.md5
thanks sqaushman...
coming from a mostly linux bash background ,,,, sometimes the win stuff stumbles me
that darn delayedexpansion -- got me again!
thanks
I got it working
coming from a mostly linux bash background ,,,, sometimes the win stuff stumbles me
that darn delayedexpansion -- got me again!
thanks
I got it working
- 04 Mar 2019 11:37
- Forum: DOS Batch Forum
- Topic: read a line from a txt file into a var , looping f.md5
- Replies: 2
- Views: 3463
read a line from a txt file into a var , looping f.md5
frinds I need to make md5sums and also creat a txt file that is hashvalue filename ; much like a bindry hash is hashvalue* filename my current attempt is to 1- make the file.md5 2- read that finished txt file , file,md5 into a var 3- trim the first 32 char from that var BUT my effort to read the fil...
- 08 Nov 2018 14:59
- Forum: DOS Batch Forum
- Topic: in a for loop just 2 kind of extentions
- Replies: 4
- Views: 3463
Re: in a for loop just 2 kind of extentions
ummmph
yes
%%~nG.mp4
works nicely
thanks again!
yes
%%~nG.mp4
works nicely
thanks again!
- 08 Nov 2018 14:49
- Forum: DOS Batch Forum
- Topic: in a for loop just 2 kind of extentions
- Replies: 4
- Views: 3463
Re: in a for loop just 2 kind of extentions
ok thanks but now I have this problem my ffmpeg cmd was this ffmpeg.exe -i %%a -y -vcodec libx264 -b:v 4110000 -pix_fmt yuv420p -g 12 -bf 3 -b_strategy 1 -coder 1 -qmin 10 -qmax 51 -sc_threshold 40 -me_range 16 -me_method hex -subq 5 -i_qfactor 0.71 -qcomp 0.6 -qdiff 4 -s 1280x720 -acodec aac -stric...
- 08 Nov 2018 14:13
- Forum: DOS Batch Forum
- Topic: in a for loop just 2 kind of extentions
- Replies: 4
- Views: 3463
in a for loop just 2 kind of extentions
Friends I have a for loop where i loop through a dir full of video files - call an ffmpeg cmd and make mp4 I do that like so ( a snippit ) or /f %%a IN ('dir /b *.*') do now this does my command on every file in that dir ( that i have already cd'd to ) it will work nicely on iether f.avi or f.mov .....