Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (98)

  • 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 ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (12255)

  • Revision 202 : Fixed generation of Windows 64bit packages.

    15 juin 2010, par marc.noirot

    Changed Paths :
     Modify /trunk/CMakeLists.txt



    Fixed generation of Windows 64bit packages.

  • Issues building ffmpeg on Windows [closed]

    19 janvier 2024, par RKum

    I have to use ffmpeg in our c++ Windows project. I have Visual Studio 2017.
For this I have to use ffmpeg-cpp.
    
ffmpeg-cpp is dependent on ffmpeg.

    


    To build ffmpeg I am following instructions in https://ffmpeg.org/platform.html#Windows.
    
I installed MSYS2 MINGW64 using installer msys2-x86_64-20240113.exe.

    


    But I am not seeing files like msys_shell.bat or mingw64_shell.bat or mingw32_shell.bat.

    


    How do I get these files ?

    


    Also if I run commands like pacman -S make pkgconf diffutils I get this error :

    


    


    error : failed retrieving file 'pkgconf-2.1.0-1-x86_64.pkg.tar.zst' from mirror.iscas.ac.cn : SSL certificate problem : self-signed certificate in certificate chain

    


    


    How to resolve this certificate issue ?

    


  • using ffmpeg for live streaming MPEG-TS with windows media services

    14 mars 2012, par Yanniv

    I'm trying to live stream MPEG-TS source to Windows Media service.
    I found how to live stream using RTMP with this code :

    ffmpeg -y -f mpegts -i udp://@:1234 -re -vcodec libx264 -maxrate 700k
    -r 25 -s 640x360 -deinterlace -acodec libvo_aacenc -ab 64k -ac 1 -ar 44100 -f flv "rtmp://rtmp1.youtube.com/videolive?sparams=<stream parameters="parameters" here="here">"
    </stream>
    • How can I convert it to support WM9/VC1 format ?
    • Does ffmpeg support pulling of the stream or only pushing to Windows Media services ?