Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (61)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

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

  • Dropping the latency of streaming in Gopro hero 8 via ffplay and ffmpeg

    13 août 2020, par Shirin

    I'm currently working on a low-latency live streaming using FFplay and FFmpeg library. My target is achieving to 100 or 200 msec latency and for next steps manipulating the latency.
Now I use the followed code and received 800msec-1sec latency in streaming live video but it is not sufficient.

    


    -ffplay -probesize 32 -sync video -an -sn -fast -infbuf -f mpegts -i udp ://127.0.0.1:10000

    


    I was wondering if you help me for dropping the latency.

    


  • How to delay subtitles in ffmpeg ? [closed]

    31 juillet 2022, par friendlygiraffe

    Using ffmpeg, I am burning subtitles to a movie using the following :

    



    ffmpeg -i inputfile.mov -vf "subtitles=subtitles.srt:force_style='Alignment=9,Fontsize=8,Outline=0'" $outputfile.mov


    



    Is there a way of delaying/shifting the subtitles start point ? 
Eg have all the subs start 2 seconds later ?

    


  • Subtitles added to MKV with ffmpeg doesn't show

    15 avril 2023, par Efraín

    I've a weird problem, that I don't seem to understand what's happening. Basically, I've an MKV with 2 subtitle tracks, and I want to add a new one, so after searching a little, I worked this command

    


    ffmpeg -i "file v.mkv" -i "file s.ass" -c copy -map 0 -map 1 -metadata:s:s:2 language=eng -metadata:s:s:2 handler_name=English -metadata:s:s:2 title=English-dl output.mkv


    


    But when I opened output.mkv, and selected the 3rd sub track, It doesn't show the subtitles. I used MKVExtract to extract the track, and it correctly is the same .ass file that I merged, so I don't know why they don't show.

    


    I used this other command as example to make the previous one

    


    ffmpeg -i "file v.mkv" -i "file s.ass" -c copy -map 0 -dn -map "-0:s" -map "-0:d" -map "1:0" "-metadata:s:s:0" "language=eng" "-metadata:s:s:0" "handler_name=English"  "-metadata:s:s:0" "title=English-dl" "output.mkv"


    


    And this one correctly show the subtitles, but it erase the 2 original tracks of the MKV(Which I don't want to happen). What is the difference here that makes the second one show the subtitles, but the first one don't ? Do I have to lose the original subs for this ?