Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (51)

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

  • 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 formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6454)

  • Using FFMPEG, how do we add subtitles in the black bar area or under the video ?

    26 septembre 2020, par DunceDancer

    I followed these steps :

    


      

    1. Added the black bars

      


      -vf "scale=1920:1080:force_original_aspect_ratio=decrease,pad=1920:1080 :(ow-iw)/2 :(oh-ih)/2,setsar=1" Source :How to add black borders to video

      


    2. 


    3. Added the subtitles ("burned" it into the video)

      


      ffmpeg -i "imput.mp4" -lavfi "subtitles=subtitles.srt:force_style='Alignment=0,OutlineColour=&H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=18,MarginL=5,MarginV=25'" -crf 1 -c:a copy "output.mp4" Source : ffmpeg subtitles alignment and position

      


    4. 


    


    Now I am stuck as to how to place the subtitles under the video or in the black screen.

    


    Edit : Screenshot added to clarify

    


    Screenshot of the Problem

    


  • ffmpeg does not sync audio and video recording

    30 avril 2020, par Ferrum3000

    I'm using followig command record mic+speakers+video screen, but in result file screen.avi, video showes +0,5 second early, than sounds.
Please help to fix it.

    



    ffmpeg ^
 -f dshow -i audio="Стерео микшер (Realtek High Definition Audio)" ^
 -f dshow -i audio="Mic in at front panel (Pink) (Realtek High Definition Audio)" ^
 -f gdigrab -framerate 60 -video_size 1920x1080 ^
 -draw_mouse 1 ^
 -i desktop -vcodec libx264 -pix_fmt yuv420p -preset ultrafast ^
 -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 2 -map "[a]" ^
 screen.avi

    


  • How to make all the edit in just one command ?

    2 août 2023, par bartche

    I'm new to ffmpeng so perdon me if it is a stupid question but I've been trying to put these 2 lines together and everytime it show me some different error.

    


    Command that runs first :

    


    ffmpeg -i input.mp4 -filter_complex pad="in_w:in_h+150:0:0",subtitles="subtitle.srt:force_style='Fontsize=24,PrimaryColour=&H000CCFF&,Bold,Shadow=12'" -vcodec libx264 output.mp4


    


    Command that runs second :

    


    ffmpeg -i output.mp4 -i input2.mp4 -filter_complex "[1][0]scale2ref=iw:iw*(1/2)[sat][ep];[ep][sat]vstack",pad="in_w:in_h+240:0:-120",drawtext="fontfile=/home/ubuntu/test/rhumasinera.ttf:text='My Text Here':fontcolor=red:fontsize=82:x=15:y=30",drawtext="fontfile=/home/ubuntu/test/rhumasinera.ttf:text='My Text Here':fontcolor=red:fontsize=82:x=15:y=880" -vcodec libx264 output2.mp4


    


    Not sure what I'm doing wrong since it works running the commands separateded. Wanting to do just in one code to make it faster.