Re: [FFmpeg-devel] [Uncompressed MP4] RFC - Draft Encoder

2024-10-16 Thread Devon Sookhoo
s > > tis 2024-10-15 klockan 08:17 -0600 skrev Devon Sookhoo: > > This updated patch registers the 'uncv' tag in the isom_tags.c > > ff_codec_movvideo_tags[] list. However, I still need to specify the > > tag > > with the "-tag:v uncv" option. I hoped

Re: [FFmpeg-devel] [Uncompressed MP4] RFC - Draft Encoder

2024-10-15 Thread Devon Sookhoo
ärdin wrote: > ons 2024-10-09 klockan 20:08 -0600 skrev Devon Sookhoo: > > Sounds good, I'll look into adding rawvideo to the list of > > movcodec_tags. > > > > Looking at the AVPixFmtDescriptor, I noticed: AVComponentDescriptor > > comp[4]; Does this line lim

Re: [FFmpeg-devel] [Uncompressed MP4] RFC - Draft Encoder

2024-10-09 Thread Devon Sookhoo
sform is frequently applied. Examples include Synthetic Aperture Radar (SAR), MRI scans, and radio astronomy. On Wed, Oct 9, 2024 at 1:32 PM Tomas Härdin wrote: > ons 2024-10-09 klockan 07:38 -0600 skrev Devon Sookhoo: > > With this patch, I was able to use the following command to g

[FFmpeg-devel] [Uncompressed MP4] RFC - Draft Encoder

2024-10-09 Thread Devon Sookhoo
With this patch, I was able to use the following command to generate an uncompressed mp4: $ ffmpeg -i input.mp4 -c:v rawvideo -pix_fmt rgb24 -tag:v uncv out.mp4 The output file successfully played in GPAC. My first question is whether to reuse the existing AV_CODEC_ID_RAWVIDEO, or if a br

Re: [FFmpeg-devel] RFC - Uncompressed MP4

2024-10-05 Thread Devon Sookhoo
Martin, thanks again, I find your comments very helpful. I will do some more research to determine what the best CLI arguments would be. On Fri, Oct 4, 2024 at 7:55 PM martin schitter wrote: > > > On 04.10.24 18:10, Devon Sookhoo wrote: > > I thought the option "-c:v rawvi

Re: [FFmpeg-devel] RFC - Uncompressed MP4

2024-10-04 Thread Devon Sookhoo
Oct 4, 2024 at 8:14 AM martin schitter wrote: > > > On 04.10.24 15:11, Devon Sookhoo wrote: > > You're correct that I'm primarily interested in uncompressed data and not > > raw bayer sensor data. > > Yes -- it was more a rather extreme example to remind, that this

Re: [FFmpeg-devel] RFC - Uncompressed MP4

2024-10-04 Thread Devon Sookhoo
what is already there. If there is a better option, then please suggest one. If ISO/IEC 23001-17:2024 requires its own .c file, then perhaps that filename should use the term "uncompressed" instead of "raw". For example, mpeg_unc_enc.c On Fri, Oct 4, 2024 at 5:54 AM martin sch

Re: [FFmpeg-devel] RFC - Uncompressed MP4

2024-10-03 Thread Devon Sookhoo
Sounds good, I will put together a complete implementation with crs tests for submission. Once completed, I envision the following command to work: $ ffmpeg -i input.mp4 -c:v rawvideo output.mp4 Does this warrant a new mpeg_rawenc.c file under /libavcodec? Or should an existing file be extende

Re: [FFmpeg-devel] RFC - Uncompressed MP4

2024-10-03 Thread Devon Sookhoo
x27;t called yet. Is this an appropriate approach? As suggested, this next patch uses av_pix_fmt_desc_get() to get the nb_components What is considered sufficient for testing? Is this done by running fate? On Wed, Oct 2, 2024 at 8:37 AM Tomas Härdin wrote: > tis 2024-10-01 klockan 18:53 -0600

Re: [FFmpeg-devel] RFC - Uncompressed MP4

2024-10-01 Thread Devon Sookhoo
ng forward. On Tue, Oct 1, 2024 at 1:48 PM Tomas Härdin wrote: > tis 2024-10-01 klockan 08:48 -0600 skrev Devon Sookhoo: > > Hello, I'm implementing ISO/IEC 23001-17:2024 (MPEGs uncompressed > > codec) > > and am looking for an FFmpeg developer to review/approve my >

[FFmpeg-devel] RFC - Uncompressed MP4

2024-10-01 Thread Devon Sookhoo
Hello, I'm implementing ISO/IEC 23001-17:2024 (MPEGs uncompressed codec) and am looking for an FFmpeg developer to review/approve my contributions. I started by writing the uncC box: On Tue, Sep 24, 2024 at 2:51 PM Devon Sookhoo https://ffmpeg.org/mailman/listinfo/ffmpeg-devel>> wrot

Re: [FFmpeg-devel] [Uncompressed MP4] Write uncC Tag

2024-09-26 Thread Devon Sookhoo
Hello, This patch is more of a RFC. I'm interested in generating uncompressed MP4 files in FFMPEG according to ISO/IEC 23001-17:2024 and wrote this as a first step towards implementation. Any feedback or help would be greatly appreciated. Thanks On Tue, Sep 24, 2024 at 2:51 PM Devon So

Re: [FFmpeg-devel] Uncompressed MP4

2024-09-24 Thread Devon Sookhoo
ar, it has already gained significant momentum and will likely become the de facto general-purpose option for uncompressed media, given that it was developed and is maintained by an accredited international standards organization. Thanks, Devon Sookhoo On Tue, Sep 24, 2024 at 4:49 PM martin schit

[FFmpeg-devel] [Uncompressed MP4] Write uncC Tag

2024-09-24 Thread Devon Sookhoo
>From 5767e173414432d6079b1b581121622e874a26cd Mon Sep 17 00:00:00 2001 From: dukesook Date: Tue, 24 Sep 2024 12:27:31 -0600 Subject: [PATCH] mov_write_uncC_tag() Initial function for writing the uncC, or uncopmressed codec box --- libavformat/movenc.c | 52 ++

Re: [FFmpeg-devel] Uncompressed MP4

2024-09-24 Thread Devon Sookhoo
thub.com/dukesook/FFmpeg/tree/unc_mp4> where I will work on adding support for uncompressed MP4s. I'll reuse the existing raw video codec & other attributes. Hopefully this capability will be added to FFmpeg soon. On Tue, Sep 24, 2024 at 9:21 AM Derek Buitenhuis wrote: > Hi, > >

[FFmpeg-devel] Uncompressed MP4

2024-09-23 Thread Devon Sookhoo
Hello, I'm interested in implementing uncompressed MP4 parsing according to the newly released ISO/IEC 23001-17:2024. Would anyone be interested in further discussing this with me? Thanks, Devon Sookhoo ___ ffmpeg-devel mailing list ffmpeg-

[FFmpeg-devel] Adding MPEGS New Uncompressed Codec

2024-09-19 Thread Devon Sookhoo
...dukesook:FFmpeg:raw However, I would like to redo this task properly so that it can be submitted as a contribution. Any help or advice for this task would be greatly appreciated. Thanks, Devon Sookhoo ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https