Recherche avancée

Médias (91)

Autres articles (48)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. ffmpeg [closed]

    5 décembre 2019, par SON PHAN VAN

    My input is a 1920x1080 video. I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. What should I do with the ffmpeg command.

  • FFMPEG - Merge multiple video in to one video, the output video has no audio

    26 octobre 2018, par Tan Pham

    My input file has 5 video and 1 picture. I want to merge all video to one video, play video at the same time.
    The layout of the output video like this :
    enter image description here

    Im using ffmpeg to merge video. this is my ffmpeg command :

    ffmpeg
    -i C:\VID\test1.mp4
    -i C:\VID\test2.mp4
    -i C:\VID\test3.mp4
    -i C:\VID\test4.mp4
    -i C:\VID\test5.mp4
    -i C:\VID\background.jpg
    -filter_complex
    " nullsrc=size=1280x720 [base];
    [0] setpts=PTS-STARTPTS, scale=560x360 [video0];
    [1] setpts=PTS-STARTPTS, scale=280x180 [video1];
    [2] setpts=PTS-STARTPTS, scale=280x180 [video2];
    [3] setpts=PTS-STARTPTS, scale=280x180 [video3];
    [4] setpts=PTS-STARTPTS, scale=280x180 [video4];
    [5:v] scale=700x700 [image];
    [base][video0] overlay=shortest=1 [tmp1];
    [tmp1][video1] overlay=shortest=1:y=360 [tmp2];
    [tmp2][video2] overlay=shortest=1:x=280:y=360 [tmp3];
    [tmp3][video3] overlay=shortest=1:y=540 [tmp4];
    [tmp4][video4] overlay=shortest=1:x=280:y=540 [tmp5];
    [tmp5][image] overlay=570:10:enable='between(t,0,30)'"
    -t 30 -c:v libx264 output.mkv

    The output video layout is working fine but no audio in the output video.
    I want all audio off each video will be keep on the output video. play audio at the same time together.
    I’m using tutorial on this link : Create a mosaic out of several input videos
    Thanks for reading

  • ffmpeg - why I have three video streams in the output file when I have one video input (one video stream), one logo input

    17 juillet 2024, par Yazhou

    Hi I'm using ffmpeg to transcode some video files from prores or dv to h264/mov. Also I want to add a logo on it and make some other changes.
The command line I use is

    


    ffmpeg -i input.mov -i logo.png -c:a aac -c:v libx264 -pix_fmt yuv420p -crf 18 -map 0:a? -map 0:v -filter_complex "yadif,[1]scale=iw*1:-1[wm];[0:v:0][wm]overlay=main_w-overlay_w-5:5" -disposition:v:0 default output_h264.mov

    


    And what I got has three video streams. One for the logo,one for the video with logo, and one for original video.

    


    Though I put the default video stream as the one with both video and logo as you can see for -disposition:v:0 default, and it's also playing that stream. But when I tried to upload it on Vimeo or Youtube, it uses the wrong stream.

    



    


    How can I change the command line to let ffmpeg only output one stream ?
And how can I remove the extra streams for the existed outcomes ?