Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (73)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (9121)

  • fftools/ffmpeg_filter : Avoid DynBuf-API for writing strings

    1er décembre 2021, par Andreas Rheinhardt
    fftools/ffmpeg_filter : Avoid DynBuf-API for writing strings
    

    It is not really natural, it requires internal allocations
    of its own and its error handling is horrible (i.e. the implicit
    (re)allocations here are unchecked).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_filter.c
  • Prevent ffmpeg and libavcodec from writing to screen (command prompt)

    20 novembre 2014, par Krishna

    I get the following output on the commandline when I try to open a particular file. I am using ffmpeg (libavcodec) to write a video reader. The following lines are output after avformat_find_stream_info().

    [mpeg2video @ 0000000000337a60] Invalid frame dimensions 0x0.
    [mpeg2video @ 0000000000337a60] Invalid frame dimensions 0x0.
    [mpeg2video @ 0000000000337a60] Invalid frame dimensions 0x0.

    Can anyone help me prevent ffmpeg from writing this to the command prompt. I would like to handle this internally without exposing this to the end user.

    Thank you !

  • avformat/matroskaenc : Remove duplicated code for writing WebVTT subs

    16 janvier 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Remove duplicated code for writing WebVTT subs
    

    Up until now, the WebM variant of WebVTT subtitles has been handled
    specially : It had its own function to write it, because the data
    had to be reformatted before writing. But given that other codecs
    also need reformatting, this is no good reason to also duplicate the
    generic stuff for writing Block(Group)s.

    This commit therefore uses an ordinary reformatting function for
    this task ; writing WebVTT subtitles now uses the generic code
    and therefore automatically uses the least amount of bytes
    for its BlockGroup length fields whereas the earlier code used
    an overestimation for the length of the Duration element.
    This is the reason for the changes to the webm-webvtt-remux FATE-test.

    (This commit does not implement support for Matroska's way of muxing
    WebVTT ; it also does not add checks to ensure that WebM-style subtitles
    don't get muxed in Matroska. But the function for reformatting gets a
    webm prefix to indicate that this is for WebM.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskaenc.c
    • [DH] tests/ref/fate/webm-webvtt-remux