import "github.com/chromedp/cdproto/media"
Package media provides the Chrome DevTools Protocol commands, types, and events for the Media domain.
This domain allows detailed inspection of media elements.
Generated by the cdproto-gen command.
easyjson.go events.go media.go types.go
const ( CommandEnable = "Media.enable" CommandDisable = "Media.disable" )
Command names.
type DisableParams struct{}
DisableParams disables the Media domain.
func Disable() *DisableParams
Disable disables the Media domain.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#method-disable
func (p *DisableParams) Do(ctx context.Context) (err error)
Do executes Media.disable against the provided context.
func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v DisableParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *DisableParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EnableParams struct{}
EnableParams enables the Media domain.
func Enable() *EnableParams
Enable enables the Media domain.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#method-enable
func (p *EnableParams) Do(ctx context.Context) (err error)
Do executes Media.enable against the provided context.
func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v EnableParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *EnableParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EventPlayerErrorsRaised struct { PlayerID PlayerID `json:"playerId"` Errors []*PlayerError `json:"errors"` }
EventPlayerErrorsRaised send a list of any errors that need to be delivered.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#event-playerErrorsRaised
func (v EventPlayerErrorsRaised) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v EventPlayerErrorsRaised) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *EventPlayerErrorsRaised) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *EventPlayerErrorsRaised) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EventPlayerEventsAdded struct { PlayerID PlayerID `json:"playerId"` Events []*PlayerEvent `json:"events"` }
EventPlayerEventsAdded send events as a list, allowing them to be batched on the browser for less congestion. If batched, events must ALWAYS be in chronological order.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#event-playerEventsAdded
func (v EventPlayerEventsAdded) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v EventPlayerEventsAdded) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *EventPlayerEventsAdded) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *EventPlayerEventsAdded) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EventPlayerMessagesLogged struct { PlayerID PlayerID `json:"playerId"` Messages []*PlayerMessage `json:"messages"` }
EventPlayerMessagesLogged send a list of any messages that need to be delivered.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#event-playerMessagesLogged
func (v EventPlayerMessagesLogged) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v EventPlayerMessagesLogged) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *EventPlayerMessagesLogged) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *EventPlayerMessagesLogged) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EventPlayerPropertiesChanged struct { PlayerID PlayerID `json:"playerId"` Properties []*PlayerProperty `json:"properties"` }
EventPlayerPropertiesChanged this can be called multiple times, and can be used to set / override / remove player properties. A null propValue indicates removal.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#event-playerPropertiesChanged
func (v EventPlayerPropertiesChanged) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v EventPlayerPropertiesChanged) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *EventPlayerPropertiesChanged) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *EventPlayerPropertiesChanged) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
EventPlayersCreated called whenever a player is created, or when a new agent joins and receives a list of active players. If an agent is restored, it will receive the full list of player ids and all events again.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#event-playersCreated
func (v EventPlayersCreated) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v EventPlayersCreated) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *EventPlayersCreated) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *EventPlayersCreated) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type PlayerError struct { Type PlayerErrorType `json:"type"` ErrorCode string `json:"errorCode"` // When this switches to using media::Status instead of PipelineStatus we can remove "errorCode" and replace it with the fields from a Status instance. This also seems like a duplicate of the error level enum - there is a todo bug to have that level removed and use this instead. (crbug.com/1068454) }
PlayerError corresponds to kMediaError.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerError
func (v PlayerError) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v PlayerError) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *PlayerError) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *PlayerError) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
PlayerErrorType [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerError
const ( PlayerErrorTypePipelineError PlayerErrorType = "pipeline_error" PlayerErrorTypeMediaError PlayerErrorType = "media_error" )
PlayerErrorType values.
func (t PlayerErrorType) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (t PlayerErrorType) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (t PlayerErrorType) String() string
String returns the PlayerErrorType as string value.
func (t *PlayerErrorType) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *PlayerErrorType) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
PlayerEvent corresponds to kMediaEventTriggered.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerEvent
func (v PlayerEvent) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v PlayerEvent) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *PlayerEvent) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *PlayerEvent) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
PlayerID players will get an ID that is unique within the agent context.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerId
String returns the PlayerID as string value.
type PlayerMessage struct { Level PlayerMessageLevel `json:"level"` // Keep in sync with MediaLogMessageLevel We are currently keeping the message level 'error' separate from the PlayerError type because right now they represent different things, this one being a DVLOG(ERROR) style log message that gets printed based on what log level is selected in the UI, and the other is a representation of a media::PipelineStatus object. Soon however we're going to be moving away from using PipelineStatus for errors and introducing a new error type which should hopefully let us integrate the error log level into the PlayerError type. Message string `json:"message"` }
PlayerMessage have one type per entry in MediaLogRecord::Type Corresponds to kMessage.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerMessage
func (v PlayerMessage) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v PlayerMessage) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *PlayerMessage) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *PlayerMessage) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
PlayerMessageLevel keep in sync with MediaLogMessageLevel We are currently keeping the message level 'error' separate from the PlayerError type because right now they represent different things, this one being a DVLOG(ERROR) style log message that gets printed based on what log level is selected in the UI, and the other is a representation of a media::PipelineStatus object. Soon however we're going to be moving away from using PipelineStatus for errors and introducing a new error type which should hopefully let us integrate the error log level into the PlayerError type.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerMessage
const ( PlayerMessageLevelError PlayerMessageLevel = "error" PlayerMessageLevelWarning PlayerMessageLevel = "warning" PlayerMessageLevelInfo PlayerMessageLevel = "info" PlayerMessageLevelDebug PlayerMessageLevel = "debug" )
PlayerMessageLevel values.
func (t PlayerMessageLevel) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (t PlayerMessageLevel) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (t PlayerMessageLevel) String() string
String returns the PlayerMessageLevel as string value.
func (t *PlayerMessageLevel) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (t *PlayerMessageLevel) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
PlayerProperty corresponds to kMediaPropertyChange.
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-PlayerProperty
func (v PlayerProperty) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (v PlayerProperty) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (v *PlayerProperty) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *PlayerProperty) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
Timestamp [no description].
See: https://chromedevtools.github.io/devtools-protocol/tot/Media#type-Timestamp
Float64 returns the Timestamp as float64 value.
Package media imports 7 packages (graph) and is imported by 2 packages. Updated 2021-01-07. Refresh now. Tools for package owners.