• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back

What is a MediaStream Object?

A mediastream object represents a flux of audio or video related data. Typically a mediastream object is a simple URL string which can be used to reference data stored in the DOM file, or a Blob object created with window.URL.createObjectURL().

What are MediaStreamTracks

MediaStreamTrack objects represent various audio or video tracks. Each MediaStreamTrack may have one or more channels.

What does a channel represent?

A channel represents the smallest unit of a media stream, such as an audio signal associated with a given speaker, like left or right in a stereo audio track.

How many inputs and outputs does a media stream object have?

A media stream object has a single input and output.

What is a mediastream object generated by getUserMedia() called.

local and has as its source input one of the user's cameras or microphones.

What is a non-local MediaStream?

A non-local media stream may be represented by a stream originating over the network and obtained via the webRTC PeerConnection API or a stream created using the Web Audio API MediaStreamAudioSourceNode. It may be used by a media element like or .

What is the output of a media stream object linked to?

the output of a media stream object is linked to a consumer. It can be a media elements, like or , the webRTC PeerConnection API or a Web Audio API MediaStreamAudioDestinationNode