Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.sys.mac.apps > #45617
| From | Lewis <g.kreme@kreme.dont-email.me> |
|---|---|
| Newsgroups | comp.sys.mac.apps, comp.sys.mac.system |
| Subject | Re: Video Editing |
| Date | 2020-11-14 01:12 +0000 |
| Organization | Miskatonic U |
| Message-ID | <slrnrqubo0.1fdt.g.kreme@ProMini.lan> (permalink) |
| References | <slrnrqsnif.a52.g.kreme@ProMini.lan> <romq5u$rub$3@dont-email.me> |
Cross-posted to 2 groups.
In message <romq5u$rub$3@dont-email.me> gtr <xxx@yyy.zzz> wrote: > On 2020-11-13 10:22:07 +0000, Lewis said: >> In message <rojmhs$eqc$1@dont-email.me> gtr <xxx@yyy.zzz> wrote: >>> I'm looking for an app or utility, that will allow me to do the following: >> >>> Feed it a video file, *type in a starting time code and and ending time >>> code*, and have it spit out the clip into separate file. I need to >>> feed it 30 or more such files, culling 4 portions of video from each, >>> all of them at different times, so it has to be a realitively clean >>> interaction like this. >> >> I do this via the command line with ffmpeg >> >> #v+ >> ffmpeg -i infile.mp4 -ss START -to END outfile.mp4 >> #v- > I heard that upstream and appreciate it. There the command is somewhat > different from yours: > ffmpeg -i input.mov -ss START -t LENGTH -acodec copy -vcodec copy output.mov There are many many (hundreds?) of options that you can add to ffmpeg Here is a recent commandline: ffmpeg -i maskred.mp3 -ss 42 -metadata author="Edgar Allan Poe" -metadata album="The Masque of the Red Death" -metadata comment="The story follows Prince Prospero's attempts to avoid a dangerous plague, known as the Red Death, by hiding in his abbey. He, along with many other wealthy nobles, hosts a masquerade ball in seven rooms of the abbey, each decorated with a different color. In the midst of their revelry, a mysterious figure disguised as a Red Death victim enters and makes his way through each of the rooms." -b:a 128K -c:a aac "The Masque of the Red Death.m4b" or this for i in *; do ffmpeg -n -f concat -safe 0 -i <(for f in $i/*.mp3; do echo "file '$PWD/$f'"; done) -metadata title="$i" -vn -c:a aac -b:a 64K $i.m4a ; done or ffmpeg -i rolf.mp4 -ss 8:37 -to 8:41 rolf2.mp4 or ffmpeg -i Witches\ 01.mp3 -i Witches\ 02.mp3 -i Witches\ 03.mp3 -i Witches\ 04.mp3 -i Witches\ 05.mp3 -i Witches\ 06.mp3 -i Witches\ 07.mp3 -metadata title="Witches" -metadata comment-"Recorded 16 Jul 1999" Witches.mp3 (just pulled from my `history`) -- When this kiss is over it will start again But not be any different could be exactly the same It's hard to imagine that nothing at all Could be so exciting, could be this much fun
Back to comp.sys.mac.apps | Previous | Next — Previous in thread | Next in thread | Find similar
Video Editing gtr <xxx@yyy.zzz> - 2020-11-12 08:06 -0800
Re: Video Editing Savageduck <savageduck1@{REMOVESPAM}me.com> - 2020-11-12 09:57 -0800
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-12 10:52 -0800
Re: Video Editing JF Mezei <jfmezei.spamnot@vaxination.ca> - 2020-11-12 14:17 -0500
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-12 11:45 -0800
Re: Video Editing Jolly Roger <jollyroger@pobox.com> - 2020-11-12 19:50 +0000
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-12 12:04 -0800
Re: Video Editing Jolly Roger <jollyroger@pobox.com> - 2020-11-12 19:26 +0000
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-12 12:07 -0800
Re: Video Editing Lewis <g.kreme@kreme.dont-email.me> - 2020-11-13 10:22 +0000
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-13 12:26 -0800
Re: Video Editing Jolly Roger <jollyroger@pobox.com> - 2020-11-13 21:06 +0000
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-13 14:01 -0800
Re: Video Editing JF Mezei <jfmezei.spamnot@vaxination.ca> - 2020-11-14 04:14 -0500
Re: Video Editing Jolly Roger <jollyroger@pobox.com> - 2020-11-14 15:35 +0000
Re: Video Editing JF Mezei <jfmezei.spamnot@vaxination.ca> - 2020-11-14 12:45 -0500
Re: Video Editing Jolly Roger <jollyroger@pobox.com> - 2020-11-14 17:55 +0000
Re: Video Editing Lewis <g.kreme@kreme.dont-email.me> - 2020-11-14 18:46 +0000
Re: Video Editing Lewis <g.kreme@kreme.dont-email.me> - 2020-11-14 01:12 +0000
Re: Video Editing Alan Browne <bitbucket@blackhole.com> - 2020-11-13 11:36 -0500
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-13 12:24 -0800
Re: Video Editing Alan Browne <bitbucket@blackhole.com> - 2020-11-13 19:38 -0500
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-13 22:46 -0800
Re: Video Editing JF Mezei <jfmezei.spamnot@vaxination.ca> - 2020-11-14 04:30 -0500
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-15 08:43 -0800
Re: Video Editing Alan Browne <bitbucket@blackhole.com> - 2020-11-14 09:56 -0500
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-15 08:46 -0800
Re: Video Editing Alan Browne <bitbucket@blackhole.com> - 2020-11-15 12:03 -0500
Re: Video Editing Lewis <g.kreme@kreme.dont-email.me> - 2020-11-15 18:25 +0000
Re: Video Editing Alan Browne <bitbucket@blackhole.com> - 2020-11-15 13:39 -0500
Re: Video Editing Lewis <g.kreme@kreme.dont-email.me> - 2020-11-14 00:59 +0000
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-13 22:47 -0800
Re: Video Editing Lewis <g.kreme@kreme.dont-email.me> - 2020-11-14 10:01 +0000
Re: Video Editing Alan Browne <bitbucket@blackhole.com> - 2020-11-14 09:35 -0500
Re: Video Editing Angus McGiver <somebody@somewhere.com> - 2020-11-13 12:06 -0500
Re: Video Editing gtr <xxx@yyy.zzz> - 2020-11-13 12:25 -0800
csiph-web