Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (97)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9628)

  • intreadwrite : Add AV_COPYxxU macros for copying to/from unaligned addresses

    23 octobre 2012, par Diego Biurrun

    intreadwrite : Add AV_COPYxxU macros for copying to/from unaligned addresses

  • avcodec/hevc : Check max ctb addresses for WPP

    28 novembre 2015, par Michael Niedermayer
    avcodec/hevc : Check max ctb addresses for WPP
    

    Fixes out of array read
    Fixes : 2f95ddd996db8a6281d2e18c184595a7/asan_heap-oob_192fe91_3330_58e4441181e30a66c19f743dcb392347.bit

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/hevc.c
  • Streaming a video to multiple end users with node.js and ffmpeg

    9 juin 2023, par Nick Knapp

    I'm designed an API endpoint with node.js and express which will accept a url from a different part of the application, convert it into a webm stream, and allow multiple different end users to receive the end result without too much backend processing.

    &#xA;

    I'd like to have the process running once and pipe the resulting stream to n endpoint calls without using temp files to hold it. So far, all of my attempts to store the output in a temporary object have failed.

    &#xA;

    What would be the best method of going about doing this ?

    &#xA;

    The following does not work, but is an example of what I've been trying to do.

    &#xA;

    import express from &#x27;express&#x27;;&#xA;import cors from &#x27;cors&#x27;;&#xA;import FfmpegCommand from &#x27;fluent-ffmpeg&#x27;;&#xA;import stream from &#x27;stream&#x27;;&#xA;&#xA;const app = express();&#xA;const port = 3002;&#xA;const activeStreams = {};&#xA;&#xA;app.use(cors());&#xA;&#xA;app.get(&#x27;/video/stream&#x27;, (req, res) => {&#xA;&#xA;  var streamUrl = new URL(req.query.streamurl);&#xA;  var protocol = streamUrl.protocol;&#xA;&#xA;  if (activeStreams[streamUrl] === undefined) {&#xA;    activeStreams[streamUrl] = new stream.Duplex();&#xA;    if ([&#x27;udp:&#x27;, &#x27;rtmp:&#x27;, &#x27;rtsp:&#x27;].includes(protocol)) {&#xA;      FfmpegCommand(path)&#xA;      .toFormat(&#x27;webm&#x27;)&#xA;      .on(&#x27;error&#x27;, function(err, stdout, stderr) {&#xA;          console.log(&#x27;an error occurred&#x27;, err.message);&#xA;          console.log("stdout:\n" &#x2B; stdout);&#xA;          console.log("stderr:\n" &#x2B; stderr);&#xA;      })&#xA;      .pipe(activeStreams[streamUrl], {end: true});&#xA;    }&#xA;    activeStreams[streamUrl].read().pipe(res);&#xA;  } else {&#xA;    activeStreams[streamUrl].read().pipe(res);   &#xA;  }&#xA;});&#xA;

    &#xA;