Search found 10 matches
- 01 Nov 2017 13:03
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
Gotcha. I will read back thru the ffmpeg documentation. Thank you guys for all your help
- 01 Nov 2017 12:43
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
Sorry, I have a hard time getting my point across most times :( Im trying to make the end user have little to do at all so smaller chance of messing things up. So as of this new code, they just have to copy and paste the video name into the batch file. Next step to making it easier to use would be m...
- 01 Nov 2017 12:17
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
Your awesome! Thank you. Heres the code in the off chance that someone else needs it. set /p VIDEO=Enter full name of video file on desktop: md "%userprofile%\desktop\frames" ffmpeg.exe -y -i "%userprofile%\desktop\%VIDEO%.mp4" -an -r 10 "%userprofile%\desktop\frames\img%%3d.bmp" ffmpeg.exe -i "%use...
- 01 Nov 2017 08:49
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
Hello, I am sorry to be Ignorant. I do not see what you mean. set /p VIDEO=Enter full name of video file on desktop: md "%userprofile%\desktop\frames" ffmpeg.exe -y -i "%userprofile%\desktop\%VIDEO%.mp4" -an -r 10 "%userprofile%\desktop\frames\img%%3d.bmp" ffmpeg.exe -i "%userprofile%\desktop\%VIDEO...
- 01 Nov 2017 07:38
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
set /p VIDEO=Enter full name of video file on desktop: md "%userprofile%\desktop\frames" ffmpeg.exe -y -i "%userprofile%\desktop\%VIDEO%.mp4" -an -r 10 "%userprofile%\desktop\frames\img%%3d.bmp" ffmpeg.exe -i "%userprofile%\desktop\%VIDEO%" -vn -ac 2 -ar 44100 -ab 320k -f mp3 "%userprofile%\desktop...
- 01 Nov 2017 07:14
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
: Directory not found.
It will still run the frames and produce them but that error comes with the audio portion.
It will still run the frames and produce them but that error comes with the audio portion.
- 31 Oct 2017 13:11
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
set /p VIDEO=Video file name (with extension) on Desktop: ffmpeg.exe -i "%userprofile%\desktop\%VIDEO%.mp4" -vn -ac 2 -ar 44100 -ab 320k -f mp3 "%userprofile%\desktop\%VIDEO%.mp3" this is the code to run to extraxt the audio. I was unsure how to combine the two. Ok, I made a test folder with the exe...
- 31 Oct 2017 12:49
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
Awesome. you guys are much nicer than the last group I dealt with (Different Forum). Anyways, I am new to batch files and ffmpeg in general. I had this Batch file given to me and it allows you to paste a video name into it and it will create a folder that frames the video out of you. I looked at the...
- 31 Oct 2017 12:27
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Re: Batch Help
I guess I was looking to see if someone knew enough about this to help me or guide me on changing this script around to do a few different things. But I didn't want to go off writing it all out and clutter this up unless someone knew about this kind of thing.
- 31 Oct 2017 09:56
- Forum: DOS Batch Forum
- Topic: Batch Help
- Replies: 18
- Views: 9481
Batch Help
Hello everyone, I am new here so forgive me if this is in the wrong place. I am new to shell script and am trying to write a script to use with a program called ffmpeg. Would this be something I could get help with here? set /p VIDEO=Enter full name of video file on desktop: md "%userprofile%\deskto...