Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5807)

  • RTSP Server send and receive rtsp stream

    12 octobre 2016, par Aleksandr Yarushevsky

    I have RTMP stream source that I need to send to my server (Janus WebRTC Gateway).

    Receive RTMP and produce RTSP I am doing with Nginx-rtmp using FFmpeg.

    Then I need to receive RTSP stream and give the possibility to get that stream by URL.

    General schema like this :
    [Teradek]---(rtmp)--->[RTMP Server (nginx-trmp) - convert rtmp to rtsp] ---(rtsp)--->[RTSP Server]<---(rtsp)---[Janus]

    Help me with RTSP Server, what server I can choose for simply receive RTSP stream and produce URL to access that stream.

  • How to capture a whole nalu of h264 from server by socket

    13 novembre 2015, par Phenix Ren

    I’m an ios programmer
    my server gave me h264 data with TCP
    but the data is not freindly like this

    enter image description here

    The startcode (00 00 00 01 or 00 00 01) is not at the start of each response data

    So how can i get a whole nalu ?

  • Cant Record Stream Using MediaRecorder In Server ?

    13 avril 2022, par Riyad Zaigirdar

    First I am trying to make a Webrtc peer connection from the browser to the server using SFU model.

    &#xA;

    Here is the post request which makes the webrtc peer connection from the browser to the server(SFU)

    &#xA;

    app.post("/broadcast", async ({ body }, res) => {&#xA;  const peer = new webrtc.RTCPeerConnection({&#xA;    iceServers: [&#xA;      {&#xA;        urls: "stun:stun.stunprotocol.org",&#xA;      },&#xA;    ],&#xA;  });&#xA;  peer.ontrack = (e) => handleTrackEvent(e, peer); &lt;-- Important&#xA;  const desc = new webrtc.RTCSessionDescription(body.sdp);&#xA;  await peer.setRemoteDescription(desc);&#xA;  const answer = await peer.createAnswer();&#xA;  await peer.setLocalDescription(answer);&#xA;  const payload = {&#xA;    sdp: peer.localDescription,&#xA;  };&#xA;&#xA;  res.json(payload);&#xA;});&#xA;

    &#xA;

    In the handleTrackEvent function, I am getting the stream which I want to start record and save in the server's local storage.

    &#xA;

    function handleTrackEvent(e, peer) {&#xA;  console.log(e.streams);&#xA;  senderStream = e.streams[0];&#xA;  var recorder = new MediaStreamRecorder(e.streams);&#xA;  recorder.recorderType = MediaRecorderWrapper;&#xA;  recorder.mimeType = "video/webm";&#xA;  recorder.ondataavailable = (blob) => {&#xA;    console.log(blob);&#xA;  };&#xA;  recorder.start(5 * 1000); &lt;-- Error generator&#xA;}&#xA;

    &#xA;

    But when try to start the recording and get the blob in 5 sec intervals, it gives me "MediaRecorder Not Found" ...

    &#xA;

    Passing following params over MediaRecorder API. { mimeType: &#x27;video/webm&#x27; }&#xA;/Users/tecbackup/webrtc-peer/node_modules/msr/MediaStreamRecorder.js:672&#xA;            mediaRecorder = new MediaRecorder(mediaStream);&#xA;            ^&#xA;&#xA;ReferenceError: MediaRecorder is not defined&#xA;

    &#xA;

    I am very new to webrtc, I need some suggestion to save the live stream from the browser to the server....In future, if find the blob, then I will save the blobs sequentially in a mp4 file in the server. Then, on runtime i start pressing ffmpeg in that mp4 file to get 240p, 360p, 720p ts files for hls streaming

    &#xA;