We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upon connecting to the websocket, a new client will receive the following:
{ "message-id": INCREMENTAL_MESSAGE_ID, // generated by the server "command": "new-medialibrary", "data": { "assets": [ { uuid: UNIQUE_ASSET_ID, // title: "Title", file-name: "MyFile.mkv", duration: "Seconds", number-of-frames: 100 // optional type: "VIDEO", // VIDEO, IMAGE, SOUND, playcount:111, size: { width: 320, height:240 } // optional poster:base64:posterFrame,//base64 encoded poster frame } ... { uuid: UNIQUE_ASSET_ID, title: "Title", file-name: "MyFile.mkv", duration: "Seconds", number-of-frames: 100 // optional type: "VIDEO", // VIDEO, IMAGE, SOUND, playcount:111, size: { width: 320, height:240 } // optional poster:base64:posterFrame,//base64 encoded poster frame } ] } }
{ "message-id": INCREMENTAL_MESSAGE_ID, // generated by the server "command": "new-playlist", "data": { "playlist-name":12345 "playlist-uuid":12345 "playlist-loop-mode:"LOOP", "playlist-repeat:"LOOP", "playlist-items": [ // position is implied { playlist-item-uuid:UNIQUE_ASSET_ID, mask-uuid:123 ... } ] } }
The text was updated successfully, but these errors were encountered:
will implement to receive on page load for testing
Sorry, something went wrong.
Merge pull request #8 from kibio/master
8044dd1
update
No branches or pull requests
Upon connecting to the websocket, a new client will receive the following:
The text was updated successfully, but these errors were encountered: