How to play an mp4(or any media file) at specific time position? See Explanation
#1
Sad 
python:
        listItem = xbmcgui.ListItem(name, path=url, thumbnailImage=iconimage)
        xbmc.Player().play(item=url, listitem=listItem)

This is what I use. Assume if video have 10 Mins. Then Can we use above code to start the video at 4Min and 10 Sec. Like Video Resume feature. I wanna use above code to start the video at specific Time Position. Any HelpHuhHuh??
Reply
#2
Code:
listItem.setProperty('startoffset', 'time_in_seconds')
Reply
#3
(2017-12-20, 15:59)spiff Wrote:
Code:
listItem.setProperty('startoffset', 'time_in_seconds')
 Thank you so much Smile It worked
Reply

Logout Mark Read Team Forum Stats Members Help
How to play an mp4(or any media file) at specific time position? See Explanation0