Oķ but is it possible to compress files stored in R2 ? Or have a Worker take file put it in Stream from R2, have it compressed and get it back from stream to store it on R2 ?
At a minimum, you'd get charged for the streaming when you download your compressed video from Stream. And I'm not sure how the storage fees would be prorated
Media transcoding in the cloud: Amazon Elastic Transcoder gives developers an easy, cost-effective way to convert media files to playback on various devices.
Transloadit is the world’s most advanced file uploading and processing service aimed at developers. Our API is an all-in-one tool for your users' files.
pricing wise: if someone lives stream with 0 client for 1000 minutes, does it count towards the pricing? or does cloudfare just strictly count viewers?
I'm trying to grok the Stream pricing. Did I get this right? Starting to use the service costs me 5$ / mo, even if I upload 0 videos. Price grows with each video stored / viewed. If I signup for the starter bundle, it's 10$ /mo, and that includes some storage and viewing. I have no use for "Images", assuming that video thumbnails don't require that feature.
Another question about webrtc live streaming: if I create a live stream via API and stream right away, should I expect it to work or do I need to wait some amount of time?
I don't see why you can't upgrade from just Stream to the Starter Bundle later on.
The $5/mo. plan includes 1.000 minutes of stored video and no delivery ($1 / 1.000min). You can use the 1000 minutes or not, its always $5. The $10/mo. plan includes (besides Image) 5.000 minutes of video delivery ($1 / 1.000min for minutes above that)
Thanks for the clarification As feedback for Cloudflare, I found the pricing section regarding Cloudflare Stream extremely confusing, even though the pricing is quite simple. I think it would be beneficial to include the bundles on the pricing page, together with a clear data table that explains the pricing per X minutes of video/viewing. Now I need to study an "example scenario" and decipher the price from there, cherry picking other price-related tidbits of information from elsewhere on the product page / dashboard.
Also, the clarification regarding my question about what's included in the bundles was clarified in the next step after I selected the no-bundle option. Would be better to explain that before I have to choose.
hi, I'm attempting to use cloudflare stream as an OEmbed into a Squarespace template.. the standard embed code threw an error, any known work arounds for getting the oembed?
HLS.js is a JavaScript library that plays HLS in browsers with support for MSE. - GitHub - video-dev/hls.js: HLS.js is a JavaScript library that plays HLS in browsers with support for MSE.
trying to upload videos client-side with Uppy in a PHP project. When I hit my php endpoint, I end up creating multiple video objects, no upload, no location header in response, infact when all seems to go right, response is completely empty.
hello to everyone, hope that somebody can help me. i have a buffer video file and i want to upload to CloudFlare streams, this is the snippet: let axios = require("axios").default; console.log(video); let options = { method: 'POST', url: 'https://api.cloudflare.com/client/v4/accounts/???????/stream', headers: { 'Authorization': "Bearer "+process.env.CLOUDFLARE_API_VIDEO }, body:{ file: video } }; axios.request(options).then((response)=>{ console.log(response); }).catch((error)=>{ console.log(error.response.data); });
the video variable is the buffer, but evety time i do the request the response is: { result: null, success: false, errors: [ { code: 10004, message: 'Decoding Error' } ], messages: null }