Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (2045)

  • Batch mp3 to mp4 recursive using ffmpeg

    5 janvier 2021, par Yusoff

    Currently I'm using this to convert mp3 in a mp3 folder into mp4.

    


    How do I do it recursively so I don't have to copy the bat file into individual subfolders

    


    echo off
    
FOR /r %%i in (*.mp3) DO (
    
"C:\ffmpeg\bin\ffmpeg.exe" -i "%%a" -an -y -vcodec copy "E:\songs\mp3\%%~na.jpg"
    
"C:\ffmpeg\bin\ffmpeg.exe" -loop 1 -i  "E:\songs\mp3\%%~na.jpg" -i "%%a" -y -c:v libx264 -preset veryfast -tune stillimage -crf 50 -pix_fmt yuv420p -c:a aac -shortest -strict experimental -b:a 128k -shortest "E:\songs\mp3\%%~na.mp4" )
    
pause


    


  • Need help concatenating multiple 2 part .mp4s

    9 septembre 2016, par Jay Ford7

    Basically, I have about 200 2-part videos that I would like to concatenate as 100 individual files.

    All the files are labeled with the same file name but with part 1 and part 2 on the end, ie "Video Name Part 1...Video Name Part 2"

    Through basic searching I understand how to combine two videos into one video manually with ffmpeg, but is there a way for ffmpeg to recognize the naming structure and do a batch concatenation ?

    EDIT : I should’ve said I was on Windows !

    Thanks !

  • Remapping multiple Mp4 videos into a single one with ffmpeg

    21 septembre 2016, par Josep Bosch

    I’m interested in remapping multiple (6) MP4 videos into a high resolution final video according to lookup tables I calculated. The idea is convert 6 independent videos in a 360º video according to an equirectangular projection.

    Equirectangular image example
    Example of equirectangular video here

    Is there a way to do this remapping with ffmpeg or any other linux program ?
    Right now I’m extracting all the frames from the videos, creating the equirectangular individual images and joining them again into a video. There must be a better way for this...

    UPDATE :

    Following Mulyva’s suggestion I first remap each individual video using the remap filter. Those parts of the panoramic video not covered are interpreted like chromakey pixels using :

    ffmpeg -i videos/camera1.MP4 -i camera0_map_x_radius5.pgm -i camera0_map_y_radius5.pgm -lavfi remap -qscale 1 out0.MP4

    Camera0

    Camera1

    Then I try to overlay them using the chomakey filter :

    ffmpeg -i out0.MP4 -i out1.MP4 -filter_complex "[1:v]chromakey=0x12da11:0.2:0.2[chromakey_res];[0:v][chromakey_res]overlay=eof_action=pass[out]" -map "[out]" out.mp4

    As you can see, the final result has an undesirable green shadow. Any idea of how to remove it ?

    Result