Implement MediaRecorder's audioBitsPerSecond and videoBitsPerSecond attributes
Categories
(Core :: Audio/Video: Recording, enhancement, P3)
Tracking
()
Tracking | Status | |
---|---|---|
firefox71 | --- | fixed |
People
(Reporter: pehrsons, Assigned: pehrsons)
References
(Regressed 1 open bug)
Details
(Keywords: dev-doc-complete)
Attachments
(10 files)
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review | |
47 bytes,
text/x-phabricator-request
|
Details | Review |
Assignee | ||
Updated•6 years ago
|
Updated•6 years ago
|
Assignee | ||
Updated•5 years ago
|
Assignee | ||
Comment 1•5 years ago
|
||
Assignee | ||
Comment 2•5 years ago
|
||
Depends on D33760
Assignee | ||
Comment 3•5 years ago
|
||
Depends on D33761
Assignee | ||
Comment 4•5 years ago
|
||
For any onlookers, I'm holding this until the spec issue at [1] is resolved.
Comment 5•5 years ago
|
||
There are some r+ patches which didn't land and no activity in this bug for 2 weeks.
:pehrsons, could you have a look please?
For more information, please visit auto_nag documentation.
Assignee | ||
Comment 6•5 years ago
|
||
dev-doc-info |
Note that this will also bring MediaRecorder up to spec in general for the Constructor and the start method. Mime type handling is not up to spec yet; that's bug 1512175; but the rest should be.
Updated•5 years ago
|
Assignee | ||
Comment 7•5 years ago
|
||
Depends on D33762
Assignee | ||
Comment 8•5 years ago
|
||
This brings the MediaRecorder constructor and start() to spec on most parts
except mime type handling (bug 1512175). The flow is also improved to better
follow along in the algorithms of the spec.
Depends on D41584
Assignee | ||
Comment 9•5 years ago
|
||
This aligns it better with MediaRecorder's timeslice which was changed from
int32 to uint32 earlier.
Depends on D41585
Assignee | ||
Comment 10•5 years ago
|
||
Depends on D41586
Assignee | ||
Comment 11•5 years ago
|
||
Depends on D41587
Assignee | ||
Comment 12•5 years ago
|
||
Depends on D41588
Assignee | ||
Comment 13•5 years ago
|
||
Depends on D41589
Looking for clarification given the spec changes. It looks like the UA has a lot of liberty to decide on the appropriate bits per second depending on the scenario.
- The UA could conceptually pick 0 bits/s for audio|video even if they are present in a stream and no options for rates were passed? This seems silly, so I figure we can ignore this, but I want to clarify that my reading is correct.
- If a stream with only audio or video is passed and only
bitsPerSecond
are passed as an option, it looks like the UA has quite a lot of wiggle room. For example, UA gets a stream with only 1 audio track,bitsPerSecond
= 1000 and can then decide to setaudioBitsPerSecond
to ~1000 andvideoBitsPerSecond
to 0, or divide them in some other way. Is this correct?
Assignee | ||
Comment 15•5 years ago
|
||
(In reply to Bryce Seager van Dyk (:bryce) from comment #14)
Looking for clarification given the spec changes. It looks like the UA has a lot of liberty to decide on the appropriate bits per second depending on the scenario.
- The UA could conceptually pick 0 bits/s for audio|video even if they are present in a stream and no options for rates were passed? This seems silly, so I figure we can ignore this, but I want to clarify that my reading is correct.
- If a stream with only audio or video is passed and only
bitsPerSecond
are passed as an option, it looks like the UA has quite a lot of wiggle room. For example, UA gets a stream with only 1 audio track,bitsPerSecond
= 1000 and can then decide to setaudioBitsPerSecond
to ~1000 andvideoBitsPerSecond
to 0, or divide them in some other way. Is this correct?
It picks at two different occasions with slightly different instructions:
- At construction and when inactivated: pick a "reasonable" bitrate for audio and video.
- At start(): pick a "reasonable" bitrate for audio and video given the current track set.
Yes, "reasonable" gives room to assign anything the UA likes. But IMO it should at least be possible to argue that the assigned value is indeed reasonable. Bitrate 0 for a certain type is not, if you're actually going to record that type, as that wouldn't result in an actual recording.
Also note that both cases contain a "such that the sum of videoBitsPerSecond and audioBitsPerSecond is close to the value of recorder’s [[ConstrainedBitsPerSecond]] slot" ([[ConstrainedBitsPerSecond]]
is the bitsPerSecond
that was passed in to the ctor). This makes it hard to make a case for choosing 0 for both audio and video for instance.
More detailed comments inlined below:
- The UA could conceptually pick 0 bits/s for audio|video even if they are present in a stream and no options for rates were passed? This seems silly, so I figure we can ignore this, but I want to clarify that my reading is correct.
Yes, silly, but nothing explicitly forbidding it.
- If a stream with only audio or video is passed and only
bitsPerSecond
are passed as an option, it looks like the UA has quite a lot of wiggle room. For example, UA gets a stream with only 1 audio track,bitsPerSecond
= 1000 and can then decide to setaudioBitsPerSecond
to ~1000 andvideoBitsPerSecond
to 0, or divide them in some other way. Is this correct?
I assume you're talking about start()
(as the only place the algorithm cares about tracks). The intention with the spec's "for recording all tracks in tracks" is that since tracks are now known, we can distribute the bits over all the tracks. In cases such as 1: (0xa, 1xv), 2: (3xa, 3xv), or 3: (19xa, 1xv) the results would be wildly different. In (1) we intended to allocate 0 bits for audio since there won't be any audio recorded, so reducing the video bits would be against the intention of application. This is again not called out explicitly to keep the spec from getting too complex. Also in (3) you'd want to allocate a larger share of bits for audio than in (2), since you'll be recording such a larger share of audio tracks.
I'll also comment on the new bitrate WPT -- since there are no strict requirements outlined by the algorithm I tried to write something with as reasonable numbers as possible, so that 1) old implementations fail it, and 2) gecko under the new spec passes it. When vendors implement the spec it's easy enough to relax the test should they need to to satisfy the way they've implemented the algorithm under the new spec.
Let me know if some parts are still unclear.
Updated•5 years ago
|
Thanks for the clarifications.
(In reply to Andreas Pehrson [:pehrsons] from comment #15)
It picks at two different occasions with slightly different instructions:
- At construction and when inactivated: pick a "reasonable" bitrate for audio and video.
- At start(): pick a "reasonable" bitrate for audio and video given the current track set.
I think this is where part of my confusion stems from. The distinction here was throwing me -- it wasn't clear that the recorder shouldn't inspect the stream's tracks prior to starting. I'd read into the "reasonable" part as that that the recorder could perform inspection of the stream to make a judgement, and then that it should explicitly do so again when starting in case the tracks had changed. Rather than that it shouldn't do so before starting (because the tracks might change), and then only do so when starting.
I assume you're talking about
start()
(as the only place the algorithm cares about tracks). The intention with the spec's "for recording all tracks in tracks" is that since tracks are now known, we can distribute the bits over all the tracks. In cases such as 1: (0xa, 1xv), 2: (3xa, 3xv), or 3: (19xa, 1xv) the results would be wildly different. In (1) we intended to allocate 0 bits for audio since there won't be any audio recorded, so reducing the video bits would be against the intention of application. This is again not called out explicitly to keep the spec from getting too complex. Also in (3) you'd want to allocate a larger share of bits for audio than in (2), since you'll be recording such a larger share of audio tracks.
I think I've misunderstood some of the tests for case 1 above, as I read them as allocating > 0 bits for audio when there is none. I'll take another look shortly now that I have a clearer understanding, as I suspect I was dealing with cases where the recorder had not yet started.
Updated•5 years ago
|
Assignee | ||
Comment 17•5 years ago
|
||
This is ready to land, but I'm planning to hold it until 71 so that bug 1512175 has a chance to land in the same version.
Comment 19•5 years ago
|
||
Comment 22•5 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/1d75b63d3a00
https://hg.mozilla.org/mozilla-central/rev/09d7666761b5
https://hg.mozilla.org/mozilla-central/rev/c12cc9f6c937
https://hg.mozilla.org/mozilla-central/rev/f4219cbc29e7
https://hg.mozilla.org/mozilla-central/rev/67e59d2a26dc
https://hg.mozilla.org/mozilla-central/rev/6005f7761315
https://hg.mozilla.org/mozilla-central/rev/c60d1d4fe9f4
https://hg.mozilla.org/mozilla-central/rev/afa7200292eb
https://hg.mozilla.org/mozilla-central/rev/6ce6f0e0471b
https://hg.mozilla.org/mozilla-central/rev/044cfbab987a
Comment 24•5 years ago
|
||
Documentation updates:
- Minor touching up to the onwarning page.
- Updated https://wiki.developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/start to include some missing errors and other information.
- Submitted BCD PR 5133 which includes the needed changes.
That should do the job. LMK if more is needed or if you spot any errors!
Assignee | ||
Comment 25•5 years ago
|
||
FWIW we've unshipped onwarning. Not sure if the compat table supports removals or how this should be handled.
Comment 26•5 years ago
|
||
:pehrsons - do you have any idea when we stopped sending warning
to MediaRecorder
? That needs to be updated as well, and I've been going through code and so far haven't found where this happened. That should be the version number set as the "version_removed" for the warning
event on MediaRecorder
.
For now, I've set it to "71" but it should be updated to the real number when possible.
Assignee | ||
Comment 27•5 years ago
|
||
I did some archaeology and I can't find that we ever fired it. It looks like we just implemented the webidl for the handler and that was it.
Description
•