Difference between revisions of "TimeCodeManager"

From LinuxMCE
Jump to: navigation, search
(Properties)
(Properties)
Line 6: Line 6:
 
! Property Name
 
! Property Name
 
! Property Type
 
! Property Type
 +
! Signal
 
! Description
 
! Description
 
|-
 
|-
 
| tcTotalTime
 
| tcTotalTime
 
| int
 
| int
 +
| totalTimeChanged()
 
| the total time, in milliseconds of the current media
 
| the total time, in milliseconds of the current media
 
|-
 
|-
 
| tcCurrentTime
 
| tcCurrentTime
 
| int
 
| int
 +
| timeChanged()
 
| the current position, in milliseconds
 
| the current position, in milliseconds
 
|-
 
|-
 
| runningTimer
 
| runningTimer
 
| double
 
| double
 +
| positionChanged()
 
| ??
 
| ??
 
|-
 
|-
 
| dragTime
 
| dragTime
 
| String
 
| String
 +
| dragTimeChanged()
 
| the time that the slider if implemented has been dragged to.
 
| the time that the slider if implemented has been dragged to.
 
|-
 
|-
 
| qsTotalTime
 
| qsTotalTime
 
| String
 
| String
 +
| totalStringTimeChanged()
 
| Total time of media, formatted in HH::MM::SS - updated every second
 
| Total time of media, formatted in HH::MM::SS - updated every second
 
|-
 
|-
 
| qsCurrentTime
 
| qsCurrentTime
 
| String
 
| String
 +
| stringTimeChanged()
 
| The current position of the media in HH:MM::SS - updated every second
 
| The current position of the media in HH:MM::SS - updated every second
 
|-
 
|-
 
| stringPlaybackSpeed
 
| stringPlaybackSpeed
 
| string
 
| string
 +
|sPlaybackSpeedChanged()
 
| Playback speed in string format
 
| Playback speed in string format
 
|-
 
|-
 
| playbackSpeed
 
| playbackSpeed
 
| int
 
| int
 +
| playbackSpeedChanged()
 
| Playback Speed in integer format
 
| Playback Speed in integer format
 
|}
 
|}

Revision as of 18:12, 1 October 2012

TimeCodeManager is the class responsible for processing timecode for external playing media. This means anything not playing locally in QOrbiter.

Properties

Property Name Property Type Signal Description
tcTotalTime int totalTimeChanged() the total time, in milliseconds of the current media
tcCurrentTime int timeChanged() the current position, in milliseconds
runningTimer double positionChanged()  ??
dragTime String dragTimeChanged() the time that the slider if implemented has been dragged to.
qsTotalTime String totalStringTimeChanged() Total time of media, formatted in HH::MM::SS - updated every second
qsCurrentTime String stringTimeChanged() The current position of the media in HH:MM::SS - updated every second
stringPlaybackSpeed string sPlaybackSpeedChanged() Playback speed in string format
playbackSpeed int playbackSpeedChanged() Playback Speed in integer format

Functions