Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (81)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (6778)

  • FFMPeg command to combine images with audio and then add background music

    3 mars 2023, par John Smith

    So, I have a series of corresponding image and audio files "0.mp3", "0.png", "1.mp3", "1.png", etc...
I want to have it so the image shows for the duration of the audio file. I also want music to play in the background. The command will also eventually be generated programmatically, so it needs to be able to handle an arbitrary amount of sources.

    


    Here is first part working

    


    ffmpeg -i 0.png -i 0.mp3 -i 1.png -i 1.mp3 -i 2.png -i 2.mp3 -i 3.png -i 3.mp3 -i 4.png -i 4.mp3 -i 5.png -i 5.mp3 -i 6.png -i 6.mp3 -i m.mp3 -filter_complex "[0][1][2][3][4][5]concat=n=7:v=1:a=1[vv][a];[vv]format=yuv420p[vout]" -map [vout] -map [a] video.mp4


    


    and here is my attempt to get the music working :

    


    ffmpeg -i 0.png -i 0.mp3 -i 1.png -i 1.mp3 -i 2.png -i 2.mp3 -i 3.png -i 3.mp3 -i 4.png -i 4.mp3 -i 5.png -i 5.mp3 -i 6.png -i 6.mp3 -i m.mp3 -filter_complex "[0][1][2][3][4][5][6]concat=n=7:v=1:a=1[vv][aout];[vv]format=yuv420p[v];[7][aout]amerge[mout]" -map [v] -map "[mout]" video.mp4


    


    The first and third audio files end up getting merged and then the audio stops, but all of the images play for the expected duration.

    


  • Improve ffmpeg parallel procesing processing

    31 décembre 2019, par hack

    I am using ffmpeg to convert a series of images and an audio file to video.
    This process happens in parallel, i.e, for different sets of images and audio file, I am spawning ffmpeg process in parallel.
    For a single request, ffmpeg response time is around 20 seconds, which degrades to around 80 seconds [avg] for 1000 req. I am using 30 as throttle limit.
    preset is veryfast. Can anyone suggest ways to improve ffmpeg performance ?

    Update :

    Please find below configuration used :

    CPU : 16 * 3.00 GHZ
    Ram : 32 gb
    OS: Win Server 2012

    ffmpeg command :

    ffmpeg -f concat -i <path to="to" text="text" file="file" containing="containing" images="images" sequence="sequence"> -i <path to="to" audio="audio" file="file"> -y -filter_complex_script <path to="to" filter="filter" script="script" file="file"> -crf 22 -threads 2 -preset veryfast </path></path></path>

  • FFMPEG build not able to recognize image file on Android

    2 octobre 2013, par Kay

    I am trying to convert a series of images to video on Android. I have successfully built Guardian Project. Now when I try to run this command

    /data/data/com.mobvcasting.mjpegffmpeg/ffmpeg -r 4 -i /mnt/sdcard/RAS/img/file%03d.bmp -r /mnt/sdcard/RAS/img/demoFile.mp4"

    i get an error saying

    10-02 05:48:35.247: V/PROJECT_NAME(13972): ***/mnt/sdcard/RAS/img/file%03d.bmp: No such file or directory***

    I have images at /mnt/sdcard/RAS/img/ directory starting from file000.bmp.

    I even tried changing my command to

    /data/data/com.mobvcasting.mjpegffmpeg/ffmpeg -r 4 -i /mnt/sdcard/RAS/img/file000.bmp -r /mnt/sdcard/RAS/img/demoFile.mp4"

    to get the same error again.

    Also, it is able to recognize /mnt/sdcard/RAS/img/ as a directory.
    What can I change to get rid of the error message ?
    Thanks !