https://discord.cloudflare.com logo
Join Discord
Powered by
# stream
  • d

    daniel_klungo

    01/09/2023, 9:35 PM
    all the console errors here are 404's from CF Stream
    screen-recording-2023-01-09-at-22-31-54
  • k

    Kyle_Cloudflare

    01/10/2023, 3:24 PM
    Raising this issue with the team so they can take a look
  • k

    Kyle_Cloudflare

    01/10/2023, 3:27 PM
    Working on it but no hard date at the moment.
  • m

    Matt Hensley

    01/10/2023, 3:46 PM
    we have a ticket in for 404s on DASH and HLS manifests
  • k

    Kyle_Cloudflare

    01/10/2023, 3:54 PM
    @Matt Hensley can you DM me the ticket ID + your account ID?
  • d

    daniel_klungo

    01/10/2023, 8:54 PM
    Thank you for following up, really appreciate it!
  • k

    Kyle_Cloudflare

    01/11/2023, 12:02 AM
    @daniel_klungo we made a change earlier today intended to address this inconsistency. Are you still seeing that issue reoccur?
  • b

    Brendan Irvine-Broque

    01/11/2023, 4:22 AM
    New: RSS feed for the Cloudflare Stream changelog Interested in subscribing to updates about new functionality and changes to Cloudflare Stream? Our changelog (https://developers.cloudflare.com/stream/changelog/) now has an RSS feed, at https://github.com/cloudflare/cloudflare-docs/commits/production/content/stream/changelog.md.atom. Plug it into your RSS reader, or into an RSS-to-email tool like Feedrabbit, Zapier, or IFTT to get email updates about new features and updates to Stream. We'll continue to share updates elsewhere as well, particularly about new features and larger changes, but this can help you stay up-to-date with the full set of changes to Stream.
    m
    • 2
    • 2
  • d

    daniel_klungo

    01/11/2023, 9:43 AM
    Seems to be fixed now! Thank you so much 🙌🏻
  • d

    daniel_klungo

    01/12/2023, 9:32 AM
    this link correctly takes me to the Stream Dashboard, but unless I've gone blind, the unique customer code is nowhere to be found - but I think it used to be there
  • d

    daniel_klungo

    01/12/2023, 9:33 AM
  • d

    daniel_klungo

    01/12/2023, 9:33 AM
    the only place I can see the customer code is in the HLS / Dash manifest URLs when clicking on a video
  • d

    daniel_klungo

    01/12/2023, 12:13 PM
    also - is there a star
    *
    missing here in the docs? https://developers.cloudflare.com/stream/faq#i-use-content-security-policy-csp-on-my-website-what-domains-do-i-need-to-add-to-which-directives
  • k

    Kyle_Cloudflare

    01/12/2023, 6:23 PM
    Oh, that's a mistake, the dashboard should state it more clearly. We'll get that solved.
  • k

    Kyle_Cloudflare

    01/12/2023, 6:24 PM
    I think you're right, will chat with folks to get the docs updated. Appreciate the catch
  • d

    daniel_klungo

    01/13/2023, 8:30 AM
    Btw, is there any way to get notifications when the prepaid amount of stored minutes have reached certain thresholds? I’ve only found notification settings for minutes watched, which is nice, but always having enough prepaid minutes is absolutely crucial as otherwise a core part of our application stops working.
  • j

    JeSuisFloro

    01/17/2023, 3:56 PM
    Hi! I'm unsure how to use AV1 with the video embed so that I can play the stream on the web. Is it correct to add the param ?betaCodecSuggestion=av1 in the iframe src like this https://customer-{customerId}.cloudflarestream.com/{videoId}/iframe?betaCodecSuggestion=av1 ? Thanks so much
  • j

    JeSuisFloro

    01/17/2023, 4:13 PM
    AV1 feedback: Just tested the beta AV1 codec and doesn't seem to be usable as of now. I used the dash web player. The video starts then it buffers for like 6-8 seconds then plays a second and goes back to buffering for 6-8 seconds and so on. The image quality is terrible, foggy, impossible to read any details. When I remove the ?betaCodecSuggestio=av1 it works great, continues & smooth play, super sharp image, etc. Is this a know issue or am I missing anything ?
    b
    f
    • 3
    • 2
  • d

    DemosJarco

    01/17/2023, 8:12 PM
    Does anyone know a regex of streamid?
    b
    • 2
    • 2
  • d

    DemosJarco

    01/17/2023, 8:14 PM
    Would
    [a-z0-9]{32}
    be correct?
  • d

    DemosJarco

    01/17/2023, 11:30 PM
    Side note, I found a api docs to live inconsistency (both old & new docs)
  • d

    DemosJarco

    01/17/2023, 11:32 PM
    https://api.cloudflare.com/#stream-live-inputs-list-live-inputs https://developers.cloudflare.com/api/operations/stream-live-inputs-list-live-inputs the
    result
    object is supposed to contain the streams inside a
    liveInputs
    object like this:
    Copy code
    json
    "result": {
        "liveInputs": [
          {
            "created": "2014-01-02T02:20:00Z",
            "meta": {
              "name": "test stream 1"
            },
            "modified": "2014-01-02T02:20:00Z",
            "uid": "66be4bf738797e01e1fca35a7bdecdcd"
          }
        ],
        "range": 1000,
        "total": 35586
      },
    but it's returning this
    Copy code
    json
    result: [
        {
          uid: '.....',
          created: '2022-11-19T03:24:59.735646Z',
          modified: '2022-11-19T03:24:59.735646Z',
          meta: [Object]
        },
        {
          uid: '.....',
          created: '2022-11-06T18:52:49.40392Z',
          modified: '2022-11-19T03:24:43.4065Z',
          meta: [Object]
        },
        {
          uid: '.....',
          created: '2022-11-05T03:24:40.221375Z',
          modified: '2022-11-27T21:42:54.6921Z',
          meta: [Object]
        },
        {
          uid: '.....',
          created: '2022-11-05T02:40:30.22711Z',
          modified: '2022-11-27T21:46:56.792541Z',
          meta: [Object]
        }
      ],
    the inputs are being dumped directly on
    result
    instead of the subkey
    b
    d
    • 3
    • 2
  • i

    ivankrister

    01/19/2023, 8:49 AM
    how do i secure my webrtc playback url ?
    b
    • 2
    • 1
  • y

    youknowwho

    01/19/2023, 7:50 PM
    hi can we upload base64 image to cloudflare images? can't seem to find it in the docs.
  • a

    adebanjo

    01/20/2023, 6:29 AM
    Can anyone suggest the best way to feed RTMP streams to Cloudflare, Cloud flare only supports RTMPS. What is the best way to approach this?
  • s

    skaboy007

    01/20/2023, 8:34 AM
    just do it.
  • f

    Freddo

    01/20/2023, 9:56 PM
    Does anyone have any recommendations for which web video library is best to use if my goal is to customize my web player to look something like the image below: - https://developers.cloudflare.com/stream/viewing-videos/using-own-player/web/ - leaning towards using hls.js at the moment, seems to be the most straight forward with the functionality i need out the box
  • r

    redoPop

    01/20/2023, 11:07 PM
    I think you're interested in customizing the HTML video player's appearance – it's controls, etc. Is that right? I'm a bit confused because hls.js doesn't do that at all! IMO media-chrome is the state of the art for making the web player look pretty: https://github.com/muxinc/media-chrome/
  • f

    Freddo

    01/20/2023, 11:25 PM
    Yes I've built a fully custom video player for my desktop app that I'm looking to replicate for my web app - ideally I just want a html5 player I can strip the controls out and replace with my own overlays, I haven't worked with any of the libraries cloudflare suggests, so was looking for recommendations if there's any reason to pick one over the other
  • f

    Frank__Wang

    01/21/2023, 1:49 AM
    hmm
1...697071...105Latest