Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (100)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

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

Sur d’autres sites (9643)

  • fate : split mxf test dependencies to DV and MPEG2

    28 mars 2023, par Marton Balint
    fate : split mxf test dependencies to DV and MPEG2
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] tests/fate/lavf-container.mak
  • FFMPEG Python : Encountered scale(1920, 1080) with multiple outgoing edges with same upstream label None ; a `split` filter is probably required

    2 janvier, par Lysander Cox

    Here is the code in question :

    &#xA;

    for comment in thread[&#x27;comments&#x27;]:&#xA;        commentClips &#x2B;= fragmentConcat(comment, filePrefix)&#xA;        &#xA;        staticClip = ffmpeg.input(&#x27;assets/static.mp4&#x27;)&#xA;        commentClips.append(staticClip&#xA;                                .filter(&#x27;setsar&#x27;, 1, 1)&#xA;                                .filter(&#x27;scale&#x27;, 1920, 1080)&#xA;                           )&#xA;        commentClips.append(staticClip.audio)&#xA;

    &#xA;

    This code generates the following error :

    &#xA;

    ValueError: Encountered scale(1920, 1080) &lt;6adb028f8ef5> with multiple outgoing edges with same upstream label None; a `split` filter is probably required&#xA;

    &#xA;

    I have tried using only the video part of the input for the first call (e.g. staticClip[&#x27;v&#x27;].filter...), and I have tried using the split call as suggested (e.g. ffmpeg.input(...).split(). Nothing has worked. What is the issue, and how can I rememdy it ? Thanks.

    &#xA;

  • split multiple original videos into multiple videos of length 10s with ffmpeg in windows 10

    16 septembre 2021, par Game Replay

    i can split 1 video into small 10s videos. but how to automatically batch split videos in 1 folder&#xA;this is my code :

    &#xA;

    ffmpeg -i input.mp4 -vcodec copy -acodec copy -map 0 -segment_time 00:00:10 -f segment output%03d.mp4&#xA;

    &#xA;

    HELP ME !!!

    &#xA;