xsteadfastx 0 Posted December 13, 2016 Posted December 13, 2016 im writing a emby mopidy plugin. right now it supports browsing and streaming and a little searching. right now i want to implement a seek function. i use the streaming urls for listening to music like /Audio/<Id>/stream.mp3 is there a way to seek in this stream with a remote like api endpoint? right now i tried /Sessions/<sessionId>/Playing/seek?SeekPositionTicks=<tick> this doesnt work at all. i get this response: {u'ResponseStatus': {u'ErrorCode': u'NullReferenceException', u'Message': u'Object reference not set to an instance of an object', u'Errors': []}} any ideas?
ebr 15680 Posted December 13, 2016 Posted December 13, 2016 To seek, simply start a new stream specifying StartPositionTicks as a parameter. Or, if you are statically streaming the content, whatever is accepting the stream may be able to seek it.
xsteadfastx 0 Posted December 13, 2016 Author Posted December 13, 2016 To seek, simply start a new stream specifying StartPositionTicks as a parameter. Or, if you are statically streaming the content, whatever is accepting the stream may be able to seek it. this sound way too easy ;-). but the problem is... i cant find a easy way to restart a stream right away if you just want to seek. right now seeking in the stream in mopidy is not working with the emby streaming. the seek function needs to make a api requests or something. too bad...
ebr 15680 Posted December 13, 2016 Posted December 13, 2016 Just in case it matters try adding "?static=true" to your stream url.
xsteadfastx 0 Posted December 14, 2016 Author Posted December 14, 2016 Just in case it matters try adding "?static=true" to your stream url. unbelievable... this made it work. perfectly. thank you a thousand times!!!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now