Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (21)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • Fixed accidental leak of global variable. References #591

    15 avril 2014, par jackmoore
    Fixed accidental leak of global variable.  References #591
    Enabled strict mode. Fixes #597
  • avcodec/libzvbi-teletextdec : Remove unused variable ret

    4 novembre 2015, par Michael Niedermayer
    avcodec/libzvbi-teletextdec : Remove unused variable ret
    

    Fixes : libavcodec/libzvbi-teletextdec.c:232:9 : warning : unused variable ret [-Wunused-variable]

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/libzvbi-teletextdec.c
  • Parse ffmpeg output into batch variable

    31 août 2019, par johnnyquest

    help please.
    I am on Windows command line and I want ffmpeg error returned as variable.
    Tried many things, still not working.

    @echo off&amp;setlocal disabledelayedexpansion
    SET S="path\to\ffmpeg.exe" -hide_banner -i InputFile.FLV -vframes 1 -an -s 400x222 -ss 30 OutputFile.jpg
    !S!
    for /f "usebackq delims=" %%A in ('!S!') do set var=%%A
    echo !var!

    The result is that the statement !S ! produces the correct output on the console (InputFile.FLV: No such file or directory) but does not put that into the variable. The output of echo !var ! statement simply shows as "path\to\ffmpeg.exe" -hide_banner -i InputFile.FLV -vframes 1 -an -s 400x222 -ss 30 OutputFile.jpg

    How do I get the output of !S ! into !var !?