Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (34)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (8506)

  • doc : Fix project name typo

    16 février 2014, par Diego Biurrun
    doc : Fix project name typo
    
    • [DBH] doc/general.texi
  • Need help to convert all "mp4" files to "gif" in a folder/directry with ffmpeg and .bat

    10 février 2023, par Lucas Yang

    I need some help.I try work automation to eliminate unnecessary time, I was looking for a way to convert video files to gif files.
So I learned how to make it using ".bat" through Googling, and want to make it a ".bat file" that automatically converts all mp4 files at one click because only one file is converted at a time.

    


    it worked perfect for me. but I got a lot of vidoe files what i have to convert. I installed ffmpeg in my PC(@window)

    


    this is what i find

    


    @echo off
chcp 65001
cls

setlocal
echo 프레임 수치를 설정하세요
set /p fps= 

ffmpeg.exe  -i "%~1" -vf "fps=%fps%,scale=860:-1:flags=lanczos,palettegen" "%~n1.png"
ffmpeg.exe  -i "%~1" -i "%~n1.png" -lavfi "fps=%fps%,scale=860:-1:flags=lanczos [x]; [x][1:v] paletteuse" "%~n1.gif"

del "%~n1.png"

goto :a


    


    Thank for reading it.

    


  • doc/examples : Always open files as "binary", not "text".

    25 juin 2020, par Carl Eugen Hoyos
    doc/examples : Always open files as "binary", not "text".
    

    Fixes ticket #8638.

    • [DH] doc/examples/decode_video.c
    • [DH] doc/examples/hw_decode.c