Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (75)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • avutil/md5 : workaround clang 3.5 #20849

    5 septembre 2014, par Michael Niedermayer
    avutil/md5 : workaround clang 3.5 #20849
    

    This avoids several failures on fate.ffmpeg.org, and thus makes real
    bugs easier to spot

    Reviewed-by : James Darnley <james.darnley@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/md5.c
  • Automate single quote escape in batch file

    23 avril 2019, par unident77

    I’m using a pretty simple ffmpeg batch script, but it can’t convert videos with single quotes in their titles. If the title is Boogiepop Phantom - 1x11 - Under The Gravity's Rainbow for example, I’ll get the error [Parsed_subtitles_0 @ 000000670ea89ec0] Unable to open Boogiepop Phantom - 1x11 - Under The Gravitys Rainbow.mkv Note the removed single quote.

    I know ^ is the escape character, but the single quote is in a different spot every time. Do I need regex or is there a simpler way ?

    for %%a in ("*.mkv") do ^
    ffmpeg -i "%%a" ^
    -vf subtitles="%%a" ^
    "NEW\%%~na.mkv"
    pause
  • Automate single quote escape in batch file

    21 décembre 2015, par unident77

    I’m using a pretty simple ffmpeg batch script, but it can’t convert videos with single quotes in their titles. If the title is Boogiepop Phantom - 1x11 - Under The Gravity's Rainbow for example, I’ll get the error [Parsed_subtitles_0 @ 000000670ea89ec0] Unable to open Boogiepop Phantom - 1x11 - Under The Gravitys Rainbow.mkv Note the removed single quote.

    I know ^ is the escape character, but the single quote is in a different spot every time. Do I need regex or is there a simpler way ?

    for %%a in ("*.mkv") do ^
    ffmpeg -i "%%a" ^
    -vf subtitles="%%a" ^
    "NEW\%%~na.mkv"
    pause