Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6863)

  • How to broadcast a livestream from YouTube to Telegram using vlc from the command-line ?

    22 février 2024, par shackra

    I want to re-transmit a live stream from YouTube (with streamlink) and broadcast it on a Telegram channel using VLC on the command-line. I think VLC is my best option for getting data from the source and sending it to the new destination.

    


    The thing is, I don't know how to configure the output correctly for the Telegram channel, nor how to put the transmission key.

    


    I was reading this answer https://stackoverflow.com/a/40461349/2020214 and using it as a guide unsuccessfully (Telegram does not detect any livestream)

    


  • How to stream to the stream name come in response from Youtube livestream api

    7 décembre 2018, par Anirudha Gupta

    I am calling this API https://developers.google.com/youtube/v3/live/docs/liveStreams/insert ? to get stream name from Livestream API

    {
    "kind": "youtube#liveStream",
    "etag": "\"etag"",
    "id": "-ABa1o",
    "snippet": {
     "publishedAt": "2018-12-07T05:41:12.000Z",
     "channelId": "UC-
     "title": "Hello World",
     "description": "Snippet description of testing",
     "isDefaultStream": false
    },
    "cdn": {
     "format": "360p",
     "ingestionType": "rtmp",
     "ingestionInfo": {
      "streamName": "9qq0-ct85-ctub-",
      "ingestionAddress": "rtmp://a.rtmp.youtube.com/live2",
      "backupIngestionAddress": "rtmp://b.rtmp.youtube.com/live2?backup=1"
     },
     "resolution": "360p",
     "frameRate": "30fps"
    },
    "status": {
     "streamStatus": "ready",
     "healthStatus": {
      "status": "noData"
     }
    },
    "contentDetails": {
     "closedCaptionsIngestionUrl": "http://upload.youtube.com/closedcaption?cid=9qq0-ct85-ctub-",
     "isReusable": true
    }
    }

    I see a response like this, When I use OBS to stream to this RMTP URL it doesn’t have the title I set in the stream as you can see come in response. I am getting stream name but not sure if I do it correctly.

    If I call the path as rtmp://a.rtmp.youtube.com/live2/steamnamefromurl/mykey
    it’s work but not have the title I set by call API. Anyone please check the page and help what I am going wrong. What I am looking for is get the title and description set for stream, or verified that I am doing it correctly.

  • streaming to stream name and stream key is not working at youtube data api v3

    8 décembre 2018, par Anirudha Gupta

    I crate a livestream and I got livestream ID and name from the api. I create the broadcast from youtube and got the broadcast id. When I bind the broadcast id and stream name. it’s bind but when I call the streamurl/name/key it’s just sending the straem there but not on the live broadcast event.

    When I send to just streamurl+name. it does send the stream but it doesn’t show anywhere, not on livebroadcast or stream event.

    Is there anything I am doing it wrong. I have call stream endpoint and have id and name. call the broadcast endpoint and got the id and now I called the bind and bind both together. I am not able to send the stream to that event. Anyone have idea over this.

    Thanks

    enter image description here