Search found 9 matches

by frostedflakes
01 Mar 2015 21:58
Forum: DOS Batch Forum
Topic: Moving Files
Replies: 3
Views: 2717

Re: Moving Files

yes, 1 common name. If no other filename with different extension move it.
by frostedflakes
01 Mar 2015 20:49
Forum: DOS Batch Forum
Topic: Moving Files
Replies: 3
Views: 2717

Moving Files

I need to create a batch program to move files that do not have same files names in other formats. let me explain I have folders with 15,000+ file in them. I want to move some files that don't match other types, ie. filename.mp4 filename.txt filename.jpg, filename2.mp4, filename3.mp3 filename3.txt f...
by frostedflakes
10 Dec 2014 21:25
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

Re: new to batch scripting

Please post the entire output of echo %path% C:\ProgramData\Oracle\Java\javapath;c:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Broadcom\Broadcom 802.11 Network Adapter;C:\Pr...
by frostedflakes
09 Dec 2014 01:29
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

Re: new to batch scripting

for System Variable, I added C:\mtn-200808a-win32\mtn-200808a-win32\; to the end of the variable name PATH.
by frostedflakes
08 Dec 2014 19:15
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

Re: new to batch scripting

echo off for %%a in ("*.*") do ( ffmpeg -i "%%a" -i C:\watermark.png -filter_complex overlay=main_w-overlay_w-1:1 -b:v 300k -r 15 -vcodec libx264 -acodec libvo_aacenc -ac 1 -ar 22050 -b:a 48k -coder 1 -threads 2 -n "%%~na-MyFreecams.mp4" move "%%~na-newpart.mp4&qu...
by frostedflakes
08 Dec 2014 16:57
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

Re: new to batch scripting

Can we see the path variable please. This is what I have so far:: @echo off for %%a in ("*.*") do ( ffmpeg -i "%%a" -i C:\watermark.png -filter_complex overlay=main_w-overlay_w-1:1 -b:v 300k -r 15 -vcodec libx264 -acodec libvo_aacenc -ac 1 -ar 22050 -b:a 48k -coder 1 -threads 2 ...
by frostedflakes
08 Dec 2014 15:13
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

Re: new to batch scripting

C:\mtn-200808a-win32\mtn-200808a-win32\mtn.exe -c 5-r 5 -h 100 -L :4 -N .txt This is the thumbnail command i have. Can you paste that line into the cmd prompt and see if it works? Yes. command line is where i got it to work. the problem I see is that i have to run it from the mtn.exe folder, I have...
by frostedflakes
08 Dec 2014 05:37
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

Re: new to batch scripting

[/code] Where does this command use the input and output filenames? C:\mtn-200808a-win32\mtn-200808a-win32\mtn.exe -c 5-r 5 -h 100 -L :4 -N .txt This is the thumbnail command i have. I was thinking about making it part of the script with the transcode. If it's possible i wanted to have it run after...
by frostedflakes
07 Dec 2014 23:54
Forum: DOS Batch Forum
Topic: new to batch scripting
Replies: 15
Views: 10432

new to batch scripting

I am working on a script to do multiple things to files. my work path is this: 1. incoming folder >transcode file > delete old .flv file then rename new .mp4 to "filename"-newpart.mp4 > then move new named file to next folder. 2. for thumbnailing and media info. I have the command for tran...