Results 181 - 200 of 1,033

HTMLMediaElement.duration

The HTMLMediaElement.duration property gives the length of the media in seconds, or zero if no media data is available.
API HTML DOM HTMLMediaElement Property Web

HTMLMediaElement.loop

The HTMLMediaElement.loop property reflects the loop HTML attribute, which controls whether the media element should start over when it reaches the end.
API HTML DOM HTMLMediaElement Property Web

HTMLMediaElement.mediaGroup

The HTMLMediaElement.mediaGroup property reflects the mediagroup HTML attribute, which indicates the name of the group of elements it belongs to. A group of media elements shares a common controller.
API HTML DOM HTMLMediaElement Property Web

HTMLMediaElement.muted

The HTMLMediaElement.muted indicates whether the media element muted.
API HTML DOM HTMLMediaElement Property Web

HTMLMediaElement.networkState

The HTMLMediaElement.networkState property indicates the current state of the fetching of media over the network.
API HTML DOM Property Read-only Web

HTMLShadowElement.getDistributedNodes()

The HTMLShadowElement.getDistributedNodes() method returns a static NodeList of the distributed nodes associated with this <shadow> element.
API HTML DOM Property Reference Web Components

IIRFilterNode.getFrequencyResponse()

The getFrequencyResponse() method of the IIRFilterNode interface takes the current filtering algorithm's settings and calculates the frequency response for frequencies specified in the frequencyHz array of frequencies.
API IIRFilterNode Method Reference Web Audio API

MediaElementAudioSourceNode

A MediaElementSourceNode has no inputs and exactly one output, and is created using the AudioContext.createMediaElementSource method. The amount of channels in the output equals the number of channels of the audio referenced by the HTMLMediaElement used in the creation of the node, or is 1 if the HTMLMediaElement has no audio.
API Interface MediaElementAudioSourceNode Reference Web Audio API

MediaStream.id

The MediaStream.id() read-only property is a DOMString containing 36 characters denoting a unique identifier (GUID) for the object.
MediaStream Property Read-only Reference Web

MediaStreamAudioSourceNode

A MediaElementSourceNode has no inputs and exactly one output, and is created using the AudioContext.createMediaStreamSource method. The amount of channels in the output equals the number of channels in AudioMediaStreamTrack. If there is no valid media stream, then the number of output channels will be one silent channel.
API Interface MediaStreamAudioSourceNode Reference Web Audio API

Navigator.mediaDevices

The Navigator.mediaDevices read-only property returns a MediaDevices object, which provides access to connected media input devices like cameras and microphones, as well as screensharing.
Navigator Property Read-only Reference Web

Navigator.registerContentHandler()

Allows web sites to register themselves as possible handlers for content of a particular MIME type.
API Method MIME Web-Based Protocol Handlers

OfflineAudioContext

The OfflineAudioContext interface is an AudioContext interface representing an audio-processing graph built from linked together AudioNodes. In contrast with a standard AudioContext, an OfflineAudioContext doesn't render the audio to the device hardware; instead, it generates it, as fast as it can, and outputs the result to an AudioBuffer.
API Interface OfflineAudioContext Reference Web Audio API

OscillatorNode

The OscillatorNode interface represents a periodic waveform, like a sine wave. It is an AudioNode audio-processing module that causes a given frequency of sine wave to be created — in effect, a constant tone.
API Interface OscillatorNode Reference Web Audio API

PannerNode

A PannerNode always has exactly one input and one output: the input can be mono or stereo but the output is always stereo (2 channels); you can't have panning effects without at least two audio channels!
API Interface PannerNode Reference Web Audio API

PannerNode.orientationX

An AudioParam whose value is the X component of the direction in which the audio source is facing, in 3D Cartesian coordinate space.
orientationX PannerNode Property Reference Web Audio API

Performance API

The High Resolution Time standard defines a Performance interface that supports client-side latency measurements within applications. The Performance interfaces are considered high resolution because they are accurate to a thousandth of a millisecond (subject to hardware or software constraints). The interfaces support a number of use cases including calculating frame-rates (potentially important in animations) and benchmarking (such as the time to load a resource).
Guide NeedsContent Overview performance Performance Web Performance