Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (83)

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

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (11930)

  • avformat/movenc : use stream indexes when generating track ids

    3 août 2024, par James Almer
    avformat/movenc : use stream indexes when generating track ids
    

    In some scenarios nb_tracks isn't the same as nb_streams, so a given id may end
    up being used for two separate streams.

    e.g. when muxing an IAMF track followed by a video track, if the IAMF track
    consists of several streams, the video track would end up having an id of 2,
    which may also be used by one of the IAMF streams.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
  • lavc/hevcdec : track local context count separately from WPP thread count

    7 avril 2024, par Anton Khirnov
    lavc/hevcdec : track local context count separately from WPP thread count
    

    The latter can be lowered while decoding, which would lead to memleaks.

    • [DH] libavcodec/hevcdec.c
    • [DH] libavcodec/hevcdec.h
  • ffmpeg doesn't generate a ISO/IEC 14496-17 (MPEG-4 text) track when ingesting WebVTT subtitles to produce MPEGTS

    10 avril 2024, par Daniel Andres Pelaez Lopez

    We are trying to create a mpegts with an ISO/IEC 14496-17 (MPEG-4 text) subtitles track, using WebVTT, but seems like ffmpeg creates a ISO 13818-1 PES private data instead.

    &#xA;

    The following is the ffmpeg command :

    &#xA;

    ffmpeg -i subtitle.vtt -c:s mov_text -f mpegts output3GPP.ts

    &#xA;

    This is using the following subtitle.vtt file :

    &#xA;

    WEBVTT&#xA;&#xA;00:00.000 --> 00:01.000&#xA;Subtitle 1&#xA;&#xA;00:01.000 --> 00:02.000&#xA;Subtitle 2&#xA;&#xA;00:02.000 --> 00:03.000&#xA;Subtitle 3&#xA;&#xA;00:03.000 --> 00:04.000&#xA;Subtitle 4&#xA;

    &#xA;

    And the following is the output of the ffprobe for that file :

    &#xA;

    Input #0, mpegts, from &#x27;output3GPP.ts&#x27;:&#xA;  Duration: 00:00:19.00, start: 1.400000, bitrate: 1 kb/s&#xA;  Program 1&#xA;    Metadata:&#xA;      service_name    : Service01&#xA;      service_provider: FFmpeg&#xA;  Stream #0:0[0x100]: Data: bin_data ([6][0][0][0] / 0x0006)&#xA;Unsupported codec with id 98314 for input stream 0&#xA;

    &#xA;

    However, if we generate an mp4, it works, the following is the command :

    &#xA;

    ffmpeg -i subtitle.vtt -c:s mov_text -f mp4 output3GPP.ts

    &#xA;

    And the following is the output of the ffprobe for that file :

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;output3GPP.ts&#x27;:&#xA;  Metadata:&#xA;    major_brand     : isom&#xA;    minor_version   : 512&#xA;    compatible_brands: isomiso2mp41&#xA;    encoder         : Lavf57.83.100&#xA;  Duration: 00:00:20.00, start: 0.000000, bitrate: 0 kb/s&#xA;  Stream #0:0[0x1](und): Subtitle: mov_text (tx3g / 0x67337874), 0&#xA;kb/s (default)&#xA;    Metadata:&#xA;      handler_name    : SubtitleHandler&#xA;

    &#xA;

    Any reason why both commands behave differently ? is mpegts not supporting ISO/IEC 14496-17 (MPEG-4 text) ?

    &#xA;