Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (52)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (4778)

  • Command for concatenate videos of different bitrate with FFMPEG

    20 décembre 2020, par Sanchit Sharma

    I want to concatenate some videos through FFMPEG, while I am doing this it concatenates without any error, but in the output the video becomes double of its length.

    


    Here is the code that i am using :

    


    ffmpeg -f conacat -i file.txt -c copy output.mp4

    


    I've also used many suggestions from the web, but still i am finding myself nowhere.

    


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