Recherche avancée

Médias (91)

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (12122)

  • 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