Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (25)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5271)

  • ffmpeg : chain of multiple filter_complex, re-using intermediate output stream

    17 décembre 2015, par jlarsch

    How can I apply two filter_complex commands sequentially ?

    first, I want to blend a video with an image
    then I want to take the output of that filter and split it into 4 tiles, as described in this post Stackoverflow.

    I have tried this :
    (my strategy was to generate an intermediate output from filter_complex [int] and I wanted to re-use that output twice.

    ffmpeg.exe
    -i videoIn.avi
    -i imageIn.avi
    -filter_complex "[1:0] setsar=sar=1 [1sared];[0:0][1sared]blend=all_mode='divide':repeatlast=1[int];
    [int]crop=960:960:24:1055:[out1];
    [int]crop=960:960:1056:1062:[out2]"
    -map [out1] out1.avi
    -map [out2] out2.avi

    however, I am getting an error :
    Stream specifier ’int’ in filtergraph description [int]crop=960:960:24:1055[out1] ;[int]crop=960:960:1056:1062 :[out2] matches no streams

    this code works if I only use one crop operation but not with two - so I am guessing the intermediate stream [int] cannot be re-used the way I am trying to do it ?

    how can I re-use the intermediate stream multiple times for subsequent filters ?

  • lavfi : pass the hw frames context through the filter chain

    2 février 2016, par Anton Khirnov
    lavfi : pass the hw frames context through the filter chain
    
    • [DBH] doc/APIchanges
    • [DBH] doc/filters.texi
    • [DBH] libavfilter/avfilter.c
    • [DBH] libavfilter/avfilter.h
    • [DBH] libavfilter/buffersrc.c
    • [DBH] libavfilter/buffersrc.h
    • [DBH] libavfilter/version.h
  • ffmpeg : set sub_text_format to ass (without timing) by default

    21 février 2016, par Clément Bœsch
    ffmpeg : set sub_text_format to ass (without timing) by default
    

    Fixes Ticket #4783

    • [DH] ffmpeg.c
    • [DH] tests/ref/fate/sub-charenc
    • [DH] tests/ref/fate/sub-textenc
    • [DH] tests/ref/fate/sub-webvttenc