Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (69)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13479)

  • avutil/common : Fix integer overflow in av_ceil_log2_c()

    28 juin 2020, par Michael Niedermayer
    avutil/common : Fix integer overflow in av_ceil_log2_c()
    

    Fixes : left shift of 1913647649 by 1 places cannot be represented in type 'int'
    Fixes : 23572/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5082619795734528

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/common.h
  • How to save the whole transportstream(meaning incl. PAT and PMT,etc.) using ffmpeg

    15 mars 2018, par Harris Tailor

    I have been searching the whole Internet for a long time and seems it can only save video/audio using ffmpeg,any help or advice will be appreciate !thanks !

  • Save video to disk from WebRTC MediaStream in Node

    27 novembre 2020, par SAGBO Aimé

    I'm building an app where the user can connect to the server through a WebRTC (I'm using simple-peer library both server-side and client-side to set the peer-to-peer connection).&#xA;Once the client and the server are connected, the client app stream the user camera and micro to the server.

    &#xA;

    Now, I want to save the streamed data to the filesystem server-side as an MP4 video file.

    &#xA;

    I hear about ffmpeg and fluent-ffmpeg to achieve this but i don't know how to use them.

    &#xA;

      &#xA;
    • Server side code to set up the peer connection
    • &#xA;

    &#xA;

    const Peer = require("simple-peer");&#xA;const wrtc = require("wrtc");&#xA;&#xA;const peer = new Peer({ initiator: false, wrtc: wrtc, trickle: false });&#xA;&#xA;peer.on("error", (err: any) => console.log("error", err));&#xA;&#xA;  peer.on("signal", (data: any) => {&#xA;    if (data.type === "offer" || data.type === "answer")&#xA;      dispatchMessage(JSON.stringify(data));&#xA;    // if (data.renegotiate || data.transceiverRequest) return;&#xA;  });&#xA;&#xA;  peer.on("connect", () => {&#xA;    console.log("CONNECTED");&#xA;    peer.send(JSON.stringify("HELLO DEER PEER FROM SERVER"));&#xA;  });&#xA;&#xA;  peer.on("data", (data: any) => {&#xA;    console.log("data: ", data);&#xA;  });&#xA;&#xA;  peer.on("stream", (stream: MediaStream) => {&#xA;    console.log("-------Stream received", stream);&#xA;  });&#xA;&#xA;  peer.on("track", (track: MediaStreamTrack) => {&#xA;    console.log("-------trackEvent:", track);&#xA;  });&#xA;

    &#xA;

      &#xA;
    • Client-side code
    • &#xA;

    &#xA;

    const stream = await window.navigator.mediaDevices.getUserMedia({&#xA;    video: { width: { ideal: 4096 }, height: { ideal: 2160 }},&#xA;    audio: true,&#xA;});&#xA;&#xA;const p = new SimplePeer({&#xA;    initiator: isInitiator,  &#xA;    trickle: false  &#xA;});&#xA;&#xA;stream.getTracks().forEach(track => p.addTrack(&#xA;    track,  &#xA;    stream  &#xA;));&#xA;&#xA;// Here I set up the listeners for the peer connection&#xA;

    &#xA;