Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (107)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (8593)

  • Converted mp4 h264 baseline format loads long time

    10 juillet 2013, par user1830062

    I have converted my video to mp4 x264 baseline format and it works fine with all pc/mobile phones , the problem is it takes long time to load the video while googling came to know that ffmpeg converts and sets the index file at the eof the video so it loads to the end to read and then plays the video, So any advices would be appreciatable to cut short the loading time.
    Note:tryied out QT index swapper2 but dint give much difference , please advice .

    this is the cmd i used to convert -

    ffmpeg -i … -c:v libx264 -profile:v baseline -level 1 …

    Thanks for your time .

  • time : Use clock_gettime if the monotonic clock is available

    24 août 2014, par Luca Barbato
    time : Use clock_gettime if the monotonic clock is available
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] configure
    • [DBH] libavutil/time.c
  • FFMPEG : embed current time in milliseconds into video [closed]

    5 juin, par stevendesu

    I would like to embed the computer's local time in milliseconds into a stream using FFMPEG.

    &#xA;&#xA;

    I can embed the local time in seconds using drawtext like so :

    &#xA;&#xA;

    ffmpeg -i <input /> -vf "drawtext=text=&#x27;%{localtime\:%T}&#x27;" -f flv <output>&#xA;</output>

    &#xA;&#xA;

    Looking through the documentation for drawtext, doing some tests, and Googling around, it seems like localtime and gmtime don't provide milliseconds — just seconds. However the pts options does have milliseconds :

    &#xA;&#xA;

    ffmpeg -i <input /> -vf "drawtext=text=&#x27;%{pts\:hms}&#x27;" -f flv <output>&#xA;</output>

    &#xA;&#xA;

    I also found out that pts supports an offset, so I was able to use something like this to display local time (kind of) :

    &#xA;&#xA;

    ffmpeg -i <input /> -vf "drawtext=text=&#x27;%{pts\:hms\:$(date &#x2B;%s.%N)}&#x27;" -f flv <output>&#xA;</output>

    &#xA;&#xA;

    This had two problems :

    &#xA;&#xA;

      &#xA;
    1. It displayed something like 17499:17:29 for the time... I found a (rather complex) way to work around this
    2. &#xA;

    3. It uses the server's current time when you first run the ffmpeg command as the offset — not the server's current time when ffmpeg actually starts decoding video. I noticed ffmpeg had about a 2-second startup time, causing the clock to be off by roughly 2 seconds
    4. &#xA;

    &#xA;&#xA;

    Is there a way to modify my solution, or an entirely separate solution, that can embed server local time in milliseconds into the stream ?

    &#xA;