You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, there is a case, when you receive file via some API (like REST) from user, and you want to upload this video to https://www.jwplayer.com/. So, you have no this video on your disk, and you have 2 options. Either you need to save user video to the disk before uploading to jwplayer, or you cannot use jwplatformApi.UploadAsync() API.
I would like to have byte array based upload API. It may looks like this:
byte[] fileBytes = ...
var response = await jwplatformApi.UploadAsync(videoInfo, fileBytes);
The text was updated successfully, but these errors were encountered:
Hello,
At present, you have only file based video upload API:
However, there is a case, when you receive file via some API (like REST) from user, and you want to upload this video to https://www.jwplayer.com/. So, you have no this video on your disk, and you have 2 options. Either you need to save user video to the disk before uploading to jwplayer, or you cannot use
jwplatformApi.UploadAsync()
API.I would like to have byte array based upload API. It may looks like this:
The text was updated successfully, but these errors were encountered: