Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (58)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

Sur d’autres sites (9160)

  • file protocol : handle the file : protocol string in file_check

    13 octobre 2016, par Anton Khirnov
    file protocol : handle the file : protocol string in file_check
    

    This is consistent with what file_open() does.

    CC : libav-stable@libav.org

    • [DBH] libavformat/file.c
  • avcodec/utils : print Chroma Location string in verbose log level

    15 octobre 2016, par James Almer
    avcodec/utils : print Chroma Location string in verbose log level
    

    It’s container level information on some formats (Matroska, MXF, yuv4mpeg), so
    it should be printed at higher log levels than debug.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/utils.c
  • Can not add string to the video using ffmpeg base on PHP

    13 septembre 2016, par Hạ Tím

    I’m new in ffmpeg and I’m trying to make a demo using ffmpeg.
    Below is the PHP script

    $cmd = '"C:\Program Files\ffmpeg\bin\ffmpeg.exe" -i C:\wamp\www\vine-project\cron/tmp/t_42953497622724.mp4 --enable-libfreetype -vf "drawtext=fontfile=C:\wamp\www\demo-ffmpeg\cron/arial.ttf:text='Stack Overflow':fontcolor='Black':fontsize=19" -codec:v libx264 -codec:a copy C:\wamp\www\demo-ffmpeg\cron/tmp/text_42953497622724.mp4';
    @exec($cmd, $output);
    echo '<pre>';
    print_r($output);
    echo '</pre>';

    And then below is the result of output :

    Array
    (
    )

    Before, I joined multi videos and add background successfully.
    Input video file is exists.
    What is my wrong ? Are something incorrect ?
    3 cups of beer for each help :D
    Sorry for my bad English

    Thanks for attention !