Recherche avancée

Médias (91)

Autres articles (41)

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

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8572)

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