Hi,
I am new here. Is there a way to start playing an audio file from the middle somewhere? Something like "start from time 1:23 and end at 4:56 point."
Thank
Sound from middle
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: Sound from middle
If you are using the player object (desktop) then look up playSelection, startTime and endTime in the LC dictionary.
Set the playSelection to true and then set startTime and endTime, to make the player only play the intervals in between.
The number of intervals per second is specified by the player's timeScale property. The total number of intervals is given in the player's duration property.
If your question relates to a mobile player, then look up mobileControlSet and the player specific "currentTime", which is the current position of the playhead, measured in milliseconds. For iOS mobileControlSet also has startTime and endTime settings.
Set the playSelection to true and then set startTime and endTime, to make the player only play the intervals in between.
The number of intervals per second is specified by the player's timeScale property. The total number of intervals is given in the player's duration property.
If your question relates to a mobile player, then look up mobileControlSet and the player specific "currentTime", which is the current position of the playhead, measured in milliseconds. For iOS mobileControlSet also has startTime and endTime settings.
Andreas Bergendal
Independent app and system developer
Free LC dev tools: https://github.com/wheninspace
(WIS_WebDeployHelper, WIS_ScriptDependencies, WIS_BrowserAnimation)
WhenInSpace: https://wheninspace.com
Independent app and system developer
Free LC dev tools: https://github.com/wheninspace
(WIS_WebDeployHelper, WIS_ScriptDependencies, WIS_BrowserAnimation)
WhenInSpace: https://wheninspace.com
Re: Sound from middle
Thank you Andy... Such concise and coherent response. Cheers