Recherche avancée

Médias (91)

Autres articles (72)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7233)

  • NodeJS : Fail to write byte array input from webcam to ffmpeg spawn process

    23 mai 2024, par Thanesh Prabaghan

    I'm using NodeJS server to display an HTML page which has webcam option. Once user visited to my NodeJS server, it will serve html page. User can allow webcam option and see webcam view on the page.

    


    In the backend, I send webcam stream (byte array) using socket.io. I receive byte array successfully in backend with the help of socket.io. BUT MY PROBLEM IS, I can't pipe this byte array to the ffmpeg spawn process. I don't know how to properly pipe this data to the ffmpeg. Once it done, all my problem will be solved.

    


    On the other side, I have node-media-server as RTMP server to publish this stream to VLC player and other devices. Kindly help me to complete this task. I will attach all my code to this question. Kindly run this in your environment and answer the question.

    


    MY HTML PAGE

    


    &#xA;&#xA;  &#xA;    &#xA;      &#xA;&#xA;      &#xA;&#xA;      <code class="echappe-js">&lt;script src=&quot;https://cdn.socket.io/4.7.5/socket.io.min.js&quot; &amp;#xA;        integrity=&quot;integrity_code&quot; &amp;#xA;        crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;&#xA;    &#xA;    &#xA;      
    &#xA; &#xA;&#xA; &lt;script&gt;&amp;#xA;          const socket = io(&amp;#x27;http://localhost:8080/&amp;#x27;);&amp;#xA;          var video = document.getElementById(&quot;video&quot;);&amp;#xA;&amp;#xA;          if (navigator.mediaDevices.getUserMedia) {&amp;#xA;            navigator.mediaDevices.getUserMedia({ video: true, audio:true })&amp;#xA;            .then(function (stream) {&amp;#xA;              const recorder = new MediaRecorder(stream);&amp;#xA;&amp;#xA;              recorder.ondataavailable = event =&gt; {&amp;#xA;                socket.emit(&amp;#x27;VideoStream&amp;#x27;, event.data);&amp;#xA;              };&amp;#xA;              recorder.start(1000);      &amp;#xA;              video.srcObject = stream;&amp;#xA;            }).catch(function (error) {&amp;#xA;              console.log(&quot;Something went wrong!&quot;);&amp;#xA;            });&amp;#xA;         }  &amp;#xA;       &lt;/script&gt;&#xA; &#xA;&#xA;&#xA;

    &#xA;

    FFMPEG IMPLEMENTATION

    &#xA;

    const express = require(&#x27;express&#x27;);&#xA;const app = express();&#xA;const http = require(&#x27;http&#x27;);&#xA;const server = http.createServer(app);&#xA;const { Server } = require("socket.io");&#xA;const io = new Server(server);&#xA;const path = require(&#x27;node:path&#x27;); &#xA;const { spawn } = require(&#x27;node:child_process&#x27;);&#xA;&#xA;let cmd = spawn(&#x27;ffmpeg.exe&#x27;, [&#xA;    &#x27;-c:v&#x27;, &#x27;copy&#x27;, &#x27;-preset&#x27;, &#x27;ultrafast&#x27;, &#x27;-tune&#x27;, &#x27;zerolatency&#x27;,&#xA;    &#x27;-c:a&#x27;, &#x27;aac&#x27;, &#x27;-strict&#x27;, &#x27;-2&#x27;, &#x27;-ar&#x27;, &#x27;44100&#x27;, &#x27;-b:a&#x27;, &#x27;64k&#x27;,&#xA;    &#x27;-y&#x27;,&#xA;    &#x27;-use_wallclock_as_timestamps&#x27;, &#x27;1&#x27;,&#xA;    &#x27;-async&#x27;, &#x27;1&#x27;,&#xA;    &#x27;-flush_packets&#x27;, &#x27;1&#x27;,&#xA;    &#x27;-rtbufsize&#x27;, &#x27;1000&#x27;,&#xA;    &#x27;-bufsize&#x27;, &#x27;1000&#x27;,&#xA;    &#x27;-f&#x27;, &#x27;flv&#x27;,&#xA;     &#x27;-i&#x27;,&#x27;-&#x27;,&#xA;    &#x27;rtmp://localhost:1935&#x27;,&#xA;  ]);&#xA;&#xA;app.use(express.static(path.join(__dirname, &#x27;public&#x27;)));&#xA;&#xA;app.get(&#x27;/&#x27;, (req, res) => {&#xA;  res.sendFile(path.join(__dirname &#x2B; &#x27;index.html&#x27;));&#xA;});&#xA;&#xA;io.on(&#x27;connection&#x27;, (socket) => {&#xA;  socket.on("VideoStream", (data) => {&#xA;    cmd.stdin.write(data);&#xA;  });&#xA;});&#xA;&#xA;server.listen(8080, () => {&#xA;  console.log(&#x27;listening on *:8080&#x27;);&#xA;});&#xA;&#xA;```&#xA;**NODE MEDIA SERVER IMPLEMENTATION**&#xA;&#xA;```&#xA;const NodeMediaServer = require(&#x27;node-media-server&#x27;);&#xA;&#xA;const config = {&#xA;  rtmp: {&#xA;    port: 1935,&#xA;    chunk_size: 60000,&#xA;    gop_cache: true,&#xA;    ping: 30,&#xA;    ping_timeout: 60&#xA;  },&#xA;  http: {&#xA;    port: 8000,&#xA;    allow_origin: &#x27;*&#x27;&#xA;  }&#xA;};&#xA;&#xA;var nms = new NodeMediaServer(config)&#xA;nms.run();&#xA;```&#xA;&#xA;&#xA;

    &#xA;

  • How to convert jquery animation to movie or gif format ?

    19 avril 2019, par Barış Demirdelen

    How to convert jquery animation to movie or gif format ?
    Animation and screenshot functions call or too slow.
    Help me please

    Animation Function

    function resim1(){
       $("#resim-1").animate({ left: leftx}, startEffectTime1);
       ......
    }

    ScreenShot Function but too slow

    function shot(){
             html2canvas($("#main"), {
                 onrendered: function(canvas) {
                     theCanvas = canvas;
                     document.body.appendChild(canvas);
                     Canvas2Image.saveAsPNG(canvas);
                     $("#img-out").append(canvas);
                 }
             });
    }

    Call animation and screenshot functions

    $(document).ready(function() {
        resim1(); // Animate start
        setInterval(function(){ // Screenshot start
             shot();
        },500);

    });

    Bottom function call animation breaking :/

    $(document).ready(function() {
        resim1(); // Animate start
        setInterval(function(){ // Screenshot start
             shot();
        },500);

    });
  • Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_split_0

    26 mars 2023, par VenoM

    So I'm using ytdl-core & ffmpeg to convert some videos from YouTube to MP4 and then manipulate them in a way or take screenshots. But the issue I'm facing is - some videos are downloaded and are completely playable, but others are corrupt.

    &#xA;

    This is the error I get when I try to take screenshot of the corrupted video :

    &#xA;

    &#xA;

    Error : ffmpeg exited with code 1 : Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_split_0

    &#xA;

    &#xA;

    And obviously, error is there because the video is corrupted, but WHY is that the case ?

    &#xA;

    Here's my code (read TL ;DR below) :

    &#xA;

      router.post("/screenshot", async (req, res) => {&#xA;  const urlToScreenshot = req.body.url;&#xA;  const timestamp = parseInt(req.body.t, 10);&#xA;  const YouTubeURL = `https://youtube.com/watch?v=${urlToScreenshot}`;&#xA;  const filename = uuidv4();&#xA;&#xA;  const videoPath = `${filePath}/${filename}.mp4`;&#xA;&#xA;  const downloadStartTime = timestamp - 3;&#xA;  const downloadEndTime = timestamp &#x2B; 3;&#xA;&#xA;  const videoStream = ytdl(YouTubeURL, {&#xA;    quality: "highest",&#xA;  });&#xA;&#xA;  const ffmpegCommand = ffmpeg(videoStream)&#xA;    .setStartTime(downloadStartTime)&#xA;    .duration(downloadEndTime - downloadStartTime)&#xA;    .outputOptions("-c:v", "libx264")&#xA;    .outputOptions("-c:a", "copy")&#xA;    .outputOptions("-b:v", "10M")&#xA;    .outputOptions("-filter:v", "scale=1920:1080")&#xA;    .outputOptions("-q:v", "1")&#xA;    .outputOptions("-reconnect", "1") // enable reconnection attempts&#xA;    .outputOptions("-ignore_io_errors", "1") // ignore input/output errors&#xA;    .on("end", async () => {&#xA;      console.log("Video downloaded successfully: " &#x2B; videoPath);&#xA;&#xA;      const screenshotPath = `${filePath}/${filename}.png`;&#xA;      ffmpeg(videoPath)&#xA;        .screenshots({&#xA;          count: 1,&#xA;          timemarks: ["1"],&#xA;          folder: filePath,&#xA;          filename: `${filename}.png`,&#xA;        })&#xA;        .on("end", async () => {&#xA;          console.log(`Screenshot saved successfully: ${screenshotPath}`);&#xA;          try {&#xA;            const cloudinaryResult = await cloudinary.uploader.upload(&#xA;              screenshotPath&#xA;            );&#xA;            const screenshotUrl = cloudinaryResult.secure_url;&#xA;            console.log(`Screenshot uploaded to Cloudinary: ${screenshotUrl}`);&#xA;            // await unlink(videoPath);&#xA;            console.log(`Video file deleted: ${videoPath}`);&#xA;            // await unlink(screenshotPath);&#xA;            console.log(`Screenshot file deleted: ${screenshotPath}`);&#xA;            res.status(200).json({ screenshotUrl });&#xA;          } catch (err) {&#xA;            console.error(&#xA;              "An error occurred while uploading the screenshot to Cloudinary:",&#xA;              err&#xA;            );&#xA;            // await unlink(videoPath);&#xA;            // await unlink(screenshotPath);&#xA;            res.status(500).send("Internal Server Error");&#xA;          }&#xA;        })&#xA;        .on("error", async (err) => {&#xA;          console.error("An error occurred while taking the screenshot:", err);&#xA;          // await unlink(videoPath);&#xA;          // await unlink(screenshotPath);&#xA;          res.status(500).send("Internal Server Error");&#xA;        });&#xA;    })&#xA;    .on("error", async (err) => {&#xA;      console.error("An error occurred while downloading the video:", err);&#xA;      await unlink(videoPath); // delete the file on error&#xA;      res.status(500).send("Internal Server Error");&#xA;    })&#xA;    .save(videoPath);&#xA;&#xA;  // console.log(ffmpegCommand);&#xA;});&#xA;

    &#xA;

    Code Summary : Basically I'm passing the videoID and timestamp (because I want to download a certain section of the video, not the whole video), it downloads the video, then takes a screenshot of the video at a certain timestamp (i.e 1st second) and sends the screenshot to Cloudinary (a cloud file storage).

    &#xA;

    This works fine for 50% of the videos I've tried, but doesn't for other videos.

    &#xA;

    Here's a picture of a corrupt video and a working video.

    &#xA;

    enter image description here

    &#xA;

    Working Video

    &#xA;

    Corrupt Video

    &#xA;

    Some help would be greatly appreciated !

    &#xA;