Recherche avancée

Médias (91)

Autres articles (66)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8014)

  • Do I need to install FFMPEG.exe on Windows local server to use it in PHP & Xampp ? [on hold]

    5 juillet 2016, par Drupalist

    I need to use FFMPEG in PHP on my localhost (windows 7) to convert videos. In Install FFMPEG on XAMPP and somewhere else, it has been explained how to install and configure FFMPEG on Xampp.

    I tried these solutions but I still get the following error from Apache.

    PHP Startup:FFMPEG : Unable to initialize module

    Module compiled with module API = 20090626

    PHP compiled with module API = 20121212

    These options need to match

    I would like to know do I need to install FFMPEG.exe on my computer ?

  • Revision cad4a91429 : Change INT64_MAX to LLONG_MAX This is needed to make the windows build work aft

    2 janvier 2013, par Paul Wilkins

    Changed Paths : Modify /vp9/encoder/vp9_rdopt.c Change INT64_MAX to LLONG_MAX This is needed to make the windows build work after the removal of vp9_type_alisases.h. Change-Id : I8addf38e9f3c8b864e0e30a8916a26e0264dd02c

  • Redirect FFMPEG's output to multiple named pipes on Windows

    31 mai 2016, par tearvisus

    I am trying to stream video and audio data into two separate named pipes on Windows.

    ffmpeg.exe -f dshow -i video="My camera name":audio="My microphone name" -map 0:1 -ac 1 -f f32le \\.\pipe\audioStream -map 0:0 -f mjpeg \\.\pipe\videoStream

    The problem is that FFMPEG does not seem to understand that the outputs \\.\pipe\audioStream and \\.\pipe\videoStream are pipes and treats them like files.

    1. If the pipes are already created when the FFMPEG starts, it wants to overwrite them and fails.
    2. Otherwise, it complains that the path does not exist and fails.

    As far as I understand, specifying the pipe: protocol should do the trick, but I can’t figure out how to use it properly, even with a single pipe. I have tried :

    1. pipe:pipeName
    2. pipe:pipe\pipeName
    3. pipe:\\.\pipe\pipeName
    4. pipe://pipeName
    5. pipe://pipe\pipeName
    6. pipe://\\.\pipe\pipeName

    I always end up with the same result : the output is written to the console and not to the pipe. If the pipe already exists when the FFMPEG starts, nothing connects to the pipe.

    Is it possible to use FFMPEG with named pipes on Windows ? If yes, what is the proper way to do this ?