Recherche avancée

Médias (91)

Autres articles (83)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (11435)

  • avfilter/af_afir : remove extra space in the header inclusion guards

    10 mai 2017, par James Almer
    avfilter/af_afir : remove extra space in the header inclusion guards
    

    Fixes fate-source.

    • [DH] libavfilter/af_afir.h
  • avutil/tests/audio_fifo.c : Memory leak and tab space fixes

    28 décembre 2016, par Thomas Turner
    avutil/tests/audio_fifo.c : Memory leak and tab space fixes
    

    Prevents memory leak when read_samples_from_audio_fifo() is
    called more than once by deallocating before reallocating
    more memory.

    Fixes space indentation for contents in ERROR().

    Signed-off-by : Thomas Turner <thomastdt@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/tests/audio_fifo.c
  • how do I echo only white space and no newline

    3 décembre 2016, par Dan Sherman

    I’m working on a simple batch script that loops over files in a directory and process them with ffmpeg. for readability purposes, I want to indent the ffmpeg output 4 spaces, but I cannot come up with a way that works.

    @echo off

    for %%a in (%~dp0rawVideo\*.MP4) do (

       if exist %~dp0rawAudio\%%~na.wav (
           echo Already Processed :
           echo     %%a
       ) else (
           echo Processing :
           echo     %%a
           echo|set /p leadingSpace="#   "  
           ffmpeg -c:v h264 -threads 24 -i %%a -map_channel 0.1.0 -map_channel -1 -y -v quiet -stats %~dp0rawAudio\%%~na.wav
       )

       echo(
    )
    pause

    If I just do this i get nothing, because I’ve read windows strips leading white spaces.

    echo|set /p leadingSpace="    "

    I tried what I think is the backspace trick as well, but it didn’t work. Is there no way of doing this ?