Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (3641)

  • Cropping black bars in video with ffmpeg on ubuntu changes video size

    9 décembre 2013, par pramod

    I have a source video size that's 720x576 with black rectangles on the top and bottom.

    I want to remove the black rectangles and set the output video size to 640x352.

    I tried -vf cropdetect and the value it gave was 640:192:0:80.

    However, putting that same value in crop=<parameter></parameter> changes the output video size.

    How can I fix this ?

    E.g. :

    ffmpeg -i all_the_best_test.mpg -s 640x352 -deinterlace -b 500k -minrate 500k \
    -maxrate 500k -aspect 1.82 -force_fps -vcodec libx264 -me_method 10 \
    -vf crop=640:192:0:80 -r 25 -acodec libfaac -ac 2 -ar 44100 -ab 96k -subq 6 \
    -vpre medium /vod/Movies/final/allthebest-crop-2.mp4
  • How to include both audios when overlay video on video with FFMPEG

    28 septembre 2021, par Yogas

    I have 2 inputs : video.mp4 (with audio) and notif.mov (with audio). I want to overlay notif.mov on video.mp4. I tried this code :

    &#xA;

    ffmpeg -y -i video.mp4  -i "notif.mov" -filter_complex "[0:v][1:v]overlay=0:0" output.mp4&#xA;

    &#xA;

    Both videos playing simultaneously, but sound missing from second input (notif.mov).

    &#xA;

  • Directly response video to the client for download when ffmpeg cutting the video

    7 mars 2023, par web disiner

    I am bulding a web application using Node.js with Express framework. That simply cut the video and send to the client browser as a response for download. For cutting a video i use FFmpeg tool.&#xA;all things working fine but ffmpeg cutted video save to working directory.

    &#xA;

    Below is my code..

    &#xA;

    const child_process= require("child_process")&#xA;&#xA;const cutting =async()=>{&#xA;    ffmpeg = child_process.spawn(&#x27;ffmpeg&#x27;, [&#xA;&#xA;        "-i", /video.mp4,&#xA;         "-ss", "00:02:20",&#xA;         "-to","00:02:50",&#xA;         "-c:v", "copy", &#xA;         "-c:a", "copy", &#xA;         "output3.mp4"&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;    ])&#xA;    ffmpeg.stderr.on(&#x27;data&#x27;, function(data) {&#xA;            console.log(&#x27;ffmpeg stderr data = &#x27;&#x2B;data );&#xA;      });&#xA;&#xA;}&#xA;

    &#xA;

    This is image of working directory

    &#xA;

    Now i want when **ffmpeg cutting the video it directly send chunks of video to the client for download **without saving it in working directory or server where my code is hosted.

    &#xA;

    How can i do this ? which approch will useful for this ?&#xA;Anyone help me. much appreciated&#xA;Thanks

    &#xA;