#10724 closed bug (fixed)
MediaConverter: shows non-writable container formats for output
Reported by: | jessicah | Owned by: | stippi |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | Applications/MediaConverter | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
In hrev47063, the list of container formats now has to be filtered for demuxers.
Have provided a patch for MediaConverter; however, perhaps it is better to fix it in the ffmpeg plugin itself?
Attachments (1)
Change History (14)
by , 11 years ago
Attachment: | 0001-MediaConverter-Filter-out-non-writable-media-file-fo.patch added |
---|
comment:1 by , 11 years ago
patch: | 0 → 1 |
---|
comment:2 by , 11 years ago
comment:3 by , 11 years ago
patch: | 1 → 0 |
---|
comment:4 by , 11 years ago
patch: | 0 → 1 |
---|
comment:5 by , 11 years ago
Is the API used solely by apps needing encoders though? Adrien seems to be using them in haiku-webkit for advertising formats Haiku can decode.
comment:6 by , 11 years ago
I checked BeOS, and only formats with the B_WRITABLE capability are returned. So this API wasn't useable for knowing which formats can be read on BeOS, and the B_READABLE capability is unused there.
I made the change to the ffmpeg media add-on because I wanted a list of readable formats to feed to WebKit. I don't see any other way to do that, and this API seems to be designed for it, even if BeOS didn't make use of the feature.
I think it makes sense to fix the apps in this case, as the API was clearly designed to report all formats, including read-only ones, and already includes the flags to identify those.
comment:7 by , 11 years ago
FYI, I've supplied a patch to BeScreenCapture which has been merged now :)
follow-up: 10 comment:8 by , 11 years ago
Just wanted to note that I am fully on the same page with the changes. The API is clearly not intended to report writable formats only. It just so happened that all formats it reported on BeOS were also writable. Similarily, I don't think it makes sense to offer tons of writable formats, even though ffmeg might support it. The API should offer the most sensible and most likely needed choices only. Otherwise, users are just overwhelmed without guidance.
comment:9 by , 11 years ago
(With the last bit, I meant to explain why the ffmeg plugin has its own muxer table that cherry picks some formats to export as writable).
comment:10 by , 11 years ago
Replying to stippi:
Just wanted to note that I am fully on the same page with the changes. The API is clearly not intended to report writable formats only. It just so happened that all formats it reported on BeOS were also writable. Similarily, I don't think it makes sense to offer tons of writable formats, even though ffmeg might support it. The API should offer the most sensible and most likely needed choices only. Otherwise, users are just overwhelmed without guidance.
Haha, totally agree! I had mentioned that to PulkoMandy the other day in IRC :) Also, I think this bug can be closed now...
comment:12 by , 11 years ago
Just for the record, I don't think restricting the number of formats at that point is the right decision, as that prevents to be able to write those formats at all. I'd prefer some way to filter those formats instead, either through an extra flag (I really want to get all the writable formats, you know), or through an extra API on top of that function that does the filtering.
comment:13 by , 11 years ago
The idea behind the limited set of formats handled by the ffmpeg plugin is to report only the ones we know to be working. With the problems we have running ffmpeg on gcc2, it makes sense to do this. The goal isn't to limit the available formats behind that.
Indeed, otherwise all applications which makes use of encoders will need to be adjusted. BeScreenCapture suffers from this, too.