Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (58)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (8612)

  • How to make Fringe Font by using ffmpeg using command line CLI in windows ?

    21 juin 2015, par Ehtesham Shami

    I have a code of ffmpeg of command line. First I have a input image of letter A and then I am using my sample code on that image and getting another output image with different style of letter A.

    I want to make a border on that output letter A.
    I can’t be attached the photos. I have pasted that code sample.

    Please tell me what is the modification is required in that code sample.

    Code Sample :

    ffmpeg -y -i back.jpg -filter_complex "drawtext=fontfile=/Windows/Fonts/meiryo.ttc:text=A:fontcolor=red:x=100:y=100:fontsize=200" output.jpg
  • How to write command line argument input redirection within a bash script ?

    3 septembre 2013, par Serg ikS

    I'm putting together a bash script to run movie rendering jobs. ffmpeg expects a multi-line text file as one of the arguments for concatenation filter to join several files into one. Like this :

    ffmpeg -f concat -i mylist.txt -c copy output

    There's also an option to write it all in a single line like so :

    ffmpeg -f concat -i <(printf "file '%s'\n" A.mp4 B.mp4) -c copy Output.mp4

    How do I write the latter for into a bash script, substituting the file names from other variables ? Tryed splitting the variables, but its not the one that works. $A and $B variables contains paths to input files.

    #!/bin/bash
    ...
    TMP_LIST=$(printf "file '%s'\n" ${A} ${B})
    APPEND="${FFMPEG} -f concat -i <<< {${TMP_LIST}} -c copy ${OUTPUT}"
    # run the concatenation:
    $APPEND
  • avcodec/exr : Check col/line for integer overflow

    1er février 2021, par Michael Niedermayer
    avcodec/exr : Check col/line for integer overflow
    

    Fixes : signed integer overflow : -2272 + -2147483360 cannot be represented in type 'int'
    Fixes : 30009/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-5005660322398208

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/exr.c