Re: [FFmpeg-user] Can I Batch Encode with ffmpeg on Mac?

2019-01-18 Thread Mark Scott
That worked! Thank you so much!

On Fri, Jan 18, 2019 at 5:32 PM Lou Logan  wrote:

> On Fri, Jan 18, 2019, at 2:10 PM, Mark Scott wrote:
> > Hello,
> > First off, I need to say that I'm very new to ffmpeg. I do not have
> > much experience with writing command lines or scripts so please excuse
> > me if I don't understand the terminology. I have figured out how to
> > encode uncompressed .mov files to cut off the first few seconds of the
> > video, and convert it to ProRes codec. Is there a way to automate the
> > process to batch encode several files at once? I'm using an iMac with
> > OS X El Capitan. Here is the command line that I use in terminal.
> >
> > ffmpeg -ss 6 -i "title".mov -vcodec prores -acodec pcm_s24le
> "title_Prores".mov
>
> That's more of a shell scripting question, but anyway:
>
> mkdir outputs
> for f in *.mov; do ffmpeg -ss 6 -i "$f" -c:v prores -c:a pcm_s24le
> "outputs/${f%.*}_Prores.mov"; done
> ___
> ffmpeg-user mailing list
> ffmpeg-user@ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-user
>
> To unsubscribe, visit link above, or email
> ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".



-- 
mark scott | video distribution

1722 routh street
suite 204
dallas, tx 75201
214-922-9222 t
972-740-4734 c




charlie uniform
tango
.com

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Can I Batch Encode with ffmpeg on Mac?

2019-01-18 Thread Lou Logan
On Fri, Jan 18, 2019, at 2:10 PM, Mark Scott wrote:
> Hello,
> First off, I need to say that I'm very new to ffmpeg. I do not have
> much experience with writing command lines or scripts so please excuse
> me if I don't understand the terminology. I have figured out how to
> encode uncompressed .mov files to cut off the first few seconds of the
> video, and convert it to ProRes codec. Is there a way to automate the
> process to batch encode several files at once? I'm using an iMac with
> OS X El Capitan. Here is the command line that I use in terminal.
> 
> ffmpeg -ss 6 -i "title".mov -vcodec prores -acodec pcm_s24le 
> "title_Prores".mov

That's more of a shell scripting question, but anyway:

mkdir outputs
for f in *.mov; do ffmpeg -ss 6 -i "$f" -c:v prores -c:a pcm_s24le 
"outputs/${f%.*}_Prores.mov"; done
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-user] Can I Batch Encode with ffmpeg on Mac?

2019-01-18 Thread Mark Scott
Hello,
First off, I need to say that I'm very new to ffmpeg. I do not have
much experience with writing command lines or scripts so please excuse
me if I don't understand the terminology. I have figured out how to
encode uncompressed .mov files to cut off the first few seconds of the
video, and convert it to ProRes codec. Is there a way to automate the
process to batch encode several files at once? I'm using an iMac with
OS X El Capitan. Here is the command line that I use in terminal.

ffmpeg -ss 6 -i "title".mov -vcodec prores -acodec pcm_s24le "title_Prores".mov

-- 
mark scott | video distribution

1722 routh street
suite 204
dallas, tx 75201
214-922-9222 t
972-740-4734 c


charlieuniformtango.com
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".