Re: [FFmpeg-user] Convert audio to CSV

2024-06-30 Thread Media Mouth
> On Jun 30, 2024, at 08:43, Michael Koch wrote: > > Am 30.06.2024 um 14:22 schrieb Media Mouth: >> >>>> Which microcontroller are you using? >>> Either Teensy LC or Seeed Xiao SAMD21. They both have a built-in DAC. >>> In the meantime I found th

Re: [FFmpeg-user] Convert audio to CSV

2024-06-30 Thread Media Mouth
>> Which microcontroller are you using? > > Either Teensy LC or Seeed Xiao SAMD21. They both have a built-in DAC. > In the meantime I found that "Sonic Visualiser" can open WAV and export CSV. > > Michael I'm not familiar with those but it Teensy does seem to have an optional filesystem akin

Re: [FFmpeg-user] Convert audio to CSV

2024-06-30 Thread Media Mouth
> On Jun 30, 2024, at 01:38, Michael Koch wrote: > > Hi, > > is it possible to convert an audio waveform to a CSV list? > I want to insert 2048 samples of a waveform into the C source code for a > microcontroller. > > Michael > Which microcontroller are you using?

[FFmpeg-user] Audio mapping and mixing

2024-06-09 Thread Media Mouth
Following up on an earlier post "amix vs amerge / how to" but now testing on ffmpeg version 7.0.1 The overall goal here is to learn how (if possible) to take source files with 10 - 20 audio channels and mixdown / assign those in various ways to -- 2 channel, 4 channels etc etc -- it depends on

Re: [FFmpeg-user] amix vs amerge / how to

2024-06-08 Thread Media Mouth
> On Jun 8, 2024, at 22:12, Carl Zwanzig wrote: > > On 6/8/2024 5:46 PM, Media Mouth wrote: >> ffmpeg version 3.1.11 Copyright (c) 2000-2017 the FFmpeg developers > > First thing is to get a modern version of ffmpeg, that one is positively > _ancient_. > > (An

Re: [FFmpeg-user] amix vs amerge / how to

2024-06-08 Thread Media Mouth
configuring complex filters. Invalid argument > On Jun 8, 2024, at 15:09, Media Mouth wrote: > > I'm looking to take Avid MXF outputs with up to 20 audio tracks, and mix them > down to various combinations, e.g. Stereo Mix, Stereo music, mono dialogue > only, Mono DM

[FFmpeg-user] amix vs amerge / how to

2024-06-08 Thread Media Mouth
I'm looking to take Avid MXF outputs with up to 20 audio tracks, and mix them down to various combinations, e.g. Stereo Mix, Stereo music, mono dialogue only, Mono DM&E splits, etc etc. all kinds of permutations and combinations. So the basic pipeline: Export MXF from Avid with "Direct Out" (i.e

Re: [FFmpeg-user] How do you keep all video metadata when transcoding using ffmpeg?

2023-09-30 Thread Media Mouth
Consider - Always retaining camera originals - Extracting the metadata using ffmpeg and maybe exiftool and capturing that either in matching-named sidecar files and/or in a media asset manager. > On Sep 29, 2023, at 04:46, Stéphane Archer wrote: > > This includes: > > - > >

Re: [FFmpeg-user] Is there a way to re-encode an inefficiently encoded file without losing quality and reducing file size?

2023-09-30 Thread Media Mouth
> On Sep 30, 2023, at 17:47, Stéphane Archer wrote: > > I'm not sure I understand what you mean, do you mean a hash like md5 and > sha1? > Could you please elaborate and simplify a bit? I checked-- I was referencing this from your OP > Is there any good reason why FFmpeg which sees that the v

[FFmpeg-user] How to merge and map 1 video file with 4 audio files?

2023-09-30 Thread Media Mouth
How to merge and map 1 video file with 4 audio files? We've have 1 video file, 4 audio files, all same length. The video file is DNxHD36 The audio tracks are all .wav The goal is to merge all 5 files in sync Based on https://ffmpeg.org/ffmpeg.html#Advanced-options I tried the following: ffmpeg

[FFmpeg-user] Trying to merge and map 1 video file with 4 audio files

2023-09-25 Thread Media Mouth
We've have 1 video file, 4 audio files, all same length. The video file is DNxHD36 The audio tracks are all .wav The goal is to merge all 5 files in sync Based on https://ffmpeg.org/ffmpeg.html#Advanced-options I tried the following: ffmpeg \ -i 'Video.mxf' \ -i 'Audio1.wav' \ -i 'Audio2.wav' \

[FFmpeg-user] Trouble with frame accuracy applying subcaps using .ass files to 23.976fps video

2023-08-25 Thread Media Mouth
Currently testing .ass subcaps in a VFX workflow. The goal is to drop specfic text over specific shots and the in/out points have to be frame accurate We're working in a 23.976 project. Currently having no trouble using FFmpeg to generate frame-accurate subclips of individual shots from a full-s

[FFmpeg-user] How to matte/letterbox plus burn in timecode and subcaps over the letterboxing

2023-08-21 Thread Media Mouth
We've got 1920x1080 source We want to letterbox top and bottom to create 2.39 aspect ratio, maintaining that within the original 1920x1080 Then over the composited letterboxed picture we want to burn in timecode and subcaps We're currently achieving the letterbox by means superimposing a photos

[FFmpeg-user] Is it possible to burn in two .srt files simultaneously to the same file?

2023-08-19 Thread Media Mouth
I've got 2 different .srt files and was hoping to use them both simultaneously to create burns in two different locations into the same video. Currently I've got a watermark plus one .srt working just fine. Was hoping to add the additional .srt. The following CLI works just fine (ie Time code

Re: [FFmpeg-user] How to drawtext hh:mm:ss:ff timecode (on an old version ffmpeg)

2023-08-16 Thread Media Mouth
>> Thanks Paul, >> >> Yes indeed you do need to escape the colons. They seem to be the >> delimiter for 'drawtext' >> Not sure why it didn't show in my prior post, but here is another test, >> confirmed with escapes before :, and using a more recent version of FFmpeg >> (v6) >> but still gettin

Re: [FFmpeg-user] How to drawtext hh:mm:ss:ff timecode (on an old version ffmpeg)

2023-08-16 Thread Media Mouth
> On Aug 16, 2023, at 11:03, Paul B Mahol wrote: > > On Wed, Aug 16, 2023 at 1:35 AM Media Mouth <mailto:commun...@gmail.com>> wrote: > >> Thanks Carl! >> >> The switch from : to . (colon to period) got rid of the first error but it >> there&#

Re: [FFmpeg-user] How to drawtext hh:mm:ss:ff timecode (on an old version ffmpeg)

2023-08-15 Thread Media Mouth
t; On Aug 15, 2023, at 14:04, Carl Zwanzig wrote: > > On 8/15/2023 1:35 PM, Media Mouth wrote: >> Seems to be a problem with the \:13, based on this error: > > Try it with a '.' or ',' there instead of a colon, hh:mm:ss.ff is a common > format and the time

[FFmpeg-user] How to drawtext hh:mm:ss:ff timecode (on an old version ffmpeg)

2023-08-15 Thread Media Mouth
Based on a number of different forums, I've been testing the following code but so far no luck burning hh:mm:ss:ff time code into an .mxf file: ffmpeg -i SourcePath \ -vf 'drawtext=timecode=01\:45\:20\:13:rate=24:x=640:y=360:fontsize=24:fontcolor=white:fontfile=/Library/Fonts/DroidSansMono-webfo

[FFmpeg-user] ffmpeg capture from DVCam tape on M1?

2022-09-10 Thread Media Mouth
I've got a DVCam deck (DSR-11), trying to digitize old tapes to a MacBook Pro 16" M1. I'm able to successfully capture using a FireWire to thunderbolt adaptor, and then a thunderbolt to USB-C/Thunderbolt 4 adaptor. Amazingly this setup works using iMovie. Picture, sound, and time code all capt

Re: [FFmpeg-user] Trouble converting from DNxHD36 to h.264

2022-07-18 Thread Media Mouth
> >> On Jul 18, 2022, at 7:37 PM, Media Mouth wrote: >> >> ffmpeg -i 'input.mov' -strict -2 -b:v 8000K -vf format=yuv420p -c:a aac >> 'output.mov' >> ffmpeg version 4.4.git Copyright (c) 2000-2022 the FFmpeg developers >> built with A

Re: [FFmpeg-user] Trouble converting from DNxHD36 to h.264

2022-07-18 Thread Media Mouth
> On Jul 18, 2022, at 7:20 PM, Carl Zwanzig wrote: > > On 7/18/2022 7:13 PM, Media Mouth wrote: >> I'm running same version MacOS on a different machine across town, where >> FFmpeg works just fine, so I'm curious what might be the cause of the >> pro

[FFmpeg-user] Trouble converting from DNxHD36 to h.264

2022-07-18 Thread Media Mouth
Having trouble converting from DNxHD36 to h.264/mp4 and h.264/mov Code used > ffmpeg input.mov -strict -2 -b:v 8000K -vf format=yuv420p -c:a aac output.mp4 Picture comes out green or purple with horizontal lines I'm on an older version MacOS (no choice. Specs below). I'm running same version Ma

Re: [FFmpeg-user] DNxHD / DNxHR conversions for Avid

2022-04-12 Thread Media Mouth
> On Apr 12, 2022, at 12:24 PM, Paul B Mahol wrote: > > On Tue, Apr 12, 2022 at 2:13 AM Media Mouth <mailto:commun...@gmail.com>> wrote: > >> We've got a bunch of mp4s that need converting to Avid-native MXF that >> they can be dropped into a ../Av

[FFmpeg-user] DNxHD / DNxHR conversions for Avid

2022-04-11 Thread Media Mouth
We've got a bunch of mp4s that need converting to Avid-native MXF that they can be dropped into a ../Avid MediaFiles/MXF folder without being ingested. (In other words, bypassing the need to importing/transcoding and avoiding using AMA+transcoding) The mp4 sources are 29.97, 23.976 and 25fps (

Re: [FFmpeg-user] Convert srt Subtitle file into ttml subtitle

2021-10-11 Thread Media Mouth
erre-Anthony Lemieux wrote: > > On Mon, Oct 11, 2021 at 6:38 PM Media Mouth <mailto:commun...@gmail.com>> wrote: >> >> Here's another possibility. https://microservice.trillionpictures.com >> <https://microservice.trillionpictures.com/> > > I a

Re: [FFmpeg-user] Convert srt Subtitle file into ttml subtitle

2021-10-11 Thread Media Mouth
Here's another possibility. https://microservice.trillionpictures.com I ran a single test with it, and the TTML formatting looked good, but I still have to run QC against a full show. > On Oct 10, 2021, at 11:15 PM, R J wrote: > > Hi, > > Thanks for your help. > > I have gone through that onl