Recherche avancée

Médias (91)

Autres articles (105)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (10539)

  • ffmpeg : overlay video on top of a cropped video, map the overlay audio, cut the base video to the overlays length

    14 mars 2023, par roku

    I'm trying to overlay a video on top of a base video which is cropped to a shorts video format (standing phone). The overlayed video should be centered on top of the base layer. The base video's length should be reduced to the overlay's length. And I want to save only the overlay's audio.

    


    I've tried a bunch of stuff without much success. The current state of my ffmpeg command is this :

    


    ffmpeg -i overlay.mp4 -ss 00:00:00 -to <insert base="base"> -i base.mp4 -map 1:v:0 -map 1:a -vf "crop=ih*(9/16):ih" -crf 21 output.mp4&#xA;</insert>

    &#xA;

    But this only gives me the cropped version of the base video. So my questions are :

    &#xA;

      &#xA;
    1. How can I figure out the base video's length ?
    2. &#xA;

    3. How can I actually overlay (not map) other video on top of the base video ?
    4. &#xA;

    5. How can I map the overlay's audio ? Since -map 1:a the base's audio and -map 0:a says : "Stream map '0:a' matches no streams. To ignore this, add a trailing ' ?' to the map."
    6. &#xA;

    &#xA;

    Any help is appreciated.

    &#xA;

  • Android FFMPEG doesn't recognize file : protocol

    6 mai 2013, par kev

    I'm running an android ffmpeg build through the Runtime.getRuntime().exec() command
    Problem is that when i specify the input as a file i get this error :

    E/MainActivity(18168): file:/mnt/sdcard/young.flv: Protocol not found

    Initially i just specified the file name without the "file :" prefix and still get the same error. How can i specify input files ?

  • 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