Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (33)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5907)

  • 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;