Recherche avancée

Médias (91)

Autres articles (56)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (7360)

  • Merge two videos by ffmpeg hstack and add delay for second video

    16 octobre 2017, par venkat

    having two videos and two audio files

    1. starting at 00:00:03 and duration 145 seconds
    2. starting at 00:00:09 and duration 140 seconds

    want to merge two videos side by side and add delay for second video by 6 seconds, for the 6 seconds need to show black color or some empty frame and merge audio files respectively with delay.

    using the following command to merge two videos

    ffmpeg -i first.mkv -i second.mkv -filter_complex "
    [0:v]scale=320:240,pad=325:240,setsar=1[l];[1:v]scale=320:240,setsar=1[r];
    [l][r]hstack" -c:v libx264 -preset ultrafast -crf 0 merged.mp4

    as far now i didn’t use audio in merging.

    any suggestions or help ?

  • How can I concatenate different videos while maintaining the original display and aspect ratio ?

    11 décembre 2019, par Lauren

    Is it possible to concatenate different videos with different aspect ratio into a single video ? And also in the end the final video would maintain the original aspect ratio of each part.

    I’ve tried the following FFmpeg command :

    ffmpeg -i 1.mp4 -i 2.mp4 -y -filter_complex "[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=unsafe=1:n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" out.mp4

    I’m using unsafe=1 which almost works.

    The only issue is that some videos stretch.
    So, how can I concatenate different videos while maintaining the original display and aspect ratio ?

  • ffmpeg crossfade between 2 videos

    8 novembre 2016, par valii2334

    I have multiple videos and I want to concatenate them with the crossfade effect between. This is an example with 2 720p videos but the command resize the output at 960x720.

    command = "ffmpeg -i 7.mp4 -i 8.mp4 -f lavfi -i color=black -filter_complex \"[0:v]format=pix_fmts=yuva420p,fade=t=out:st=6:d=1:alpha=1,setpts=PTS-STARTPTS[va0];[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+6/TB[va1];[2:v]scale=1280x720,trim=duration=11[over];[over][va0]overlay[over1];[over1][va1]overlay=format=yuv420[outv]\" -map [outv] out.mp4"
    system command