Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (36)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (9786)

  • matroskaenc : Allow chapters to be written in trailer

    3 septembre 2013, par John Stebbins
    matroskaenc : Allow chapters to be written in trailer
    

    This allows creation of frame accurate chapter marks from sources like
    DVD and BD where the precise chapter location is not known until the
    chapter mark has been reached during reading.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/avformat.h
    • [DH] libavformat/matroskaenc.c
  • FFmpeg drawtext not working on filter complex with watermark on php

    14 octobre 2018, par Groovekingg

    After I made a question of this topic i got a great answer from LordNeckbeard and appreciate for the help, but still the drawtext isn’t working, and can’t figure out what could possibly be wrong. So everything works if I omit drawtext=text=’hello’ on both of these lines, but once i add drawtext, no output.gif is created.

    $cmd1 = "$ffmpeg -ss 00:00:02 -t 00:00:02 -i $file_full_path -i $watermark -filter_complex '[0]fps=15,scale=200:113:flags=lanczos[bg];[bg][1]overlay=5:5,drawtext=text='hello',palettegen' $palette";
    $cmd2 = "$ffmpeg -ss 00:00:02 -t 00:00:02 -i $file_full_path -i $watermark -i $palette -filter_complex '[0]fps=15,scale=200:113:flags=lanczos[bg];[bg][1]overlay=5:5,drawtext=text='hello'[x];[x][2]paletteuse=dither=bayer:bayer_scale=3' -loop -1 output.gif";
    shell_exec($cmd1);
    shell_exec($cmd2);

    i have tried changing the single quotation marks to double, but nothing change. Also tried with exec(). Or is it possible that my server has a library missing and drawtext isn’t working because of this ?
    So I have tried to break down to check where it is wrong by simplifying the cmd to :

    $cmd1 = "$ffmpeg -i $file_full_path -ss 00:00:02 -t 00:00:02 -r 20 -vf scale=200:113,drawtext=text='hello' output.gif";

    and an output.gif file is created but 0bytes. what could it be ?

    Thanks to LordNeckbeard again for his answered on my previous post. Any answer would be of great help.

  • Merge commit ’b36bc81ccaa2fc85dc4bae7dc546c71e8833573d’

    10 février 2014, par Michael Niedermayer
    Merge commit ’b36bc81ccaa2fc85dc4bae7dc546c71e8833573d’
    

    * commit ’b36bc81ccaa2fc85dc4bae7dc546c71e8833573d’ :
    avplay : add support for seeking to chapter marks

    Conflicts :
    doc/ffplay.texi
    ffplay.c

    ffplay uses pageup/down for seeking by +-10min
    thus this use of the keys conflicts.
    The merge thus uses them to seek to chapters when there are some or
    +-10min when there are not

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/ffplay.texi
    • [DH] ffplay.c