Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (69)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • avformat/dvdvideodec : Don't add chapter markers for empty/dummy PTTs

    2 juillet 2024, par Marth64
    avformat/dvdvideodec : Don't add chapter markers for empty/dummy PTTs
    

    Some discs (usually same ones with padding cells), also have empty
    padding PTTs / chapters to accompany them. This results, for example,
    in an extra chapter marker that starts and ends at 0 (no duration).

    Don't add these empty chapter markers.

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavformat/dvdvideodec.c
  • avformat/dvdvideodec : Fix duration logic with 1 chapter and validate chapter range

    27 juin 2024, par Marth64
    avformat/dvdvideodec : Fix duration logic with 1 chapter and validate chapter range
    

    Chapters and duration are calculated together in dvdvideo demuxer.
    Previous chapter calculation logic treated extraction of 1 chapter
    using chapter_start and chapter_end switches incorrectly, returning
    the duration of the entire title instead of just the segment.

    Fix the logic so that it calculates and returns the duration of the
    chapter segment instead. Additionally, validate that chapter_end
    exceeds chapter_start (except in the special case of 0).

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavformat/dvdvideodec.c
  • FFmpeg does not encode chapter titles [closed]

    15 octobre 2023, par Shironats

    I am trying to add chapters to a .mp4 file.&#xA;When I tried extracting the metadata using the following command :

    &#xA;

    ffmpeg -i INPUT.mp4 -f ffmetadata FFMETADATAFILE.txt

    &#xA;

    I got an output file as follows :

    &#xA;

    ;FFMETADATA1&#xA;major_brand=mp42&#xA;minor_version=0&#xA;compatible_brands=isommp42&#xA;encoder=Lavf60.15.100&#xA;

    &#xA;

    So now I try to add some chapters as such

    &#xA;

    [CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=0&#xA;END=424510&#xA;title=mytitle1&#xA;&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=424511&#xA;END=941600&#xA;title=mytitle2&#xA;&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=941601&#xA;END=1227260&#xA;title=mytitle3&#xA;

    &#xA;

    I use the ffmpeg -i INPUT.mp4 -i FFMETADATAFILE.txt -map_metadata 1 -codec copy OUTPUT.mp4 command to encode the metadata to my video file, and for some reason I only ever get 'Chapter 0', 'Chapter 1', and 'Chapter 2'.

    &#xA;

    I tried using the -map_chapters 1 argument as well but results have been unchanged.

    &#xA;

    I am using the Latest Auto-Build (2023-10-14 13:02) Windows build by BtbN. Thanks in advance for the help.

    &#xA;