Recherche avancée

Médias (91)

Autres articles (87)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (11714)

  • EmguCV capture rtsp ip camera stream ffmpeg

    2 février 2018, par Mr Neo

    I am working with IP camera and EmguCV to detect person in an area.
    Everything is work normally with Highgui capture source.
    But with Arlo camera which use FFMPEG format, I am unable to get stream without any exception.
    Here is the code I have tried :

    if (capture == null)
           {
               try
               {
                   capture = new Capture("rtsp://<ip>:8554/live");
                   capture.ImageGrabbed += Capture_ImageGrabbed;
                   capture.Grab();
                   capture.Start();
               }


               catch (NullReferenceException exception)
               {
                   MessageBox.Show(exception.Message);
               }
               catch (TypeInitializationException exc)
               {
                   MessageBox.Show(
                      "Attention: You have to copy all the assemblies and native libraries from an official release of EmguCV to the directory of the demo." +
                      Environment.NewLine + Environment.NewLine + exc);
               }
    }
    </ip>

    and here is Capture_ImageGrabbed event which is not fired.

    private void Capture_ImageGrabbed(object sender, EventArgs e)
       {
           Mat image = new Mat();
           capture.Retrieve(image);
           picCAM.Image = image.Bitmap;
       }

    Thanks so much for your help !

  • SharedArrayBuffer for ffmpeg not working with React-Native

    31 août 2022, par Peter Garcia

    I am currently working on a React Native App using ffmpeg.wasm

    &#xA;

    but for some reason, SharedArrayBuffer is still not working. My React version is "react" : "17.0.2", and React-dom is "17.0.2",. My Chrome version is Version 104.0.5112.101 (Official Build) (arm64)

    &#xA;

    I've been racking my brain about why this isn't working on my React Native app since I did a test app and it works there but on this app, it doesn't.

    &#xA;

    I am getting this error whenever I run ffmpeg.wasm :

    &#xA;

    Uncaught (in promise) ReferenceError: SharedArrayBuffer is not defined&#xA;at aa35944d-451a-411f-bf18-4e42f7bbceb0:22:175&#xA;at Object.load (createFFmpeg.js:64:1)&#xA;

    &#xA;

    I cannot use Cross-Origin Opener headers :

    &#xA;

    Cross-Origin-Opener-Policy: same-origin&#xA;Cross-Origin-Embedder-Policy: require-corp&#xA;

    &#xA;

    because our app calls from a lot of outside APIs and it breaks them.

    &#xA;

    Any help would be greatly appreciated.

    &#xA;

  • How to fix this FFMPEG command to record audio as well ?

    19 mai 2018, par James Kowalski

    I am trying to fix this FFMPEG command to record audio.

    I have tried using the parts recommended on the official stackoverflow site but they didn’t work

    Orignal Command

    ffmpeg_stream = '/usr/bin/ffmpeg -f x11grab -s 1280x720 -r 24 -i :%d+nomouse -c:v libx264 -preset superfast -pix_fmt yuv420p -s 1280x720 -threads 0 -f flv "%s"' % (xvfb.new_display, info['destination'])

    Command with attempted audio

    ffmpeg_stream = '/usr/bin/ffmpeg -f x11grab -s 1280x720 -r 24 -i :%d+nomouse -c:v libx264 -preset superfast -pix_fmt yuv420p -s 1280x720 -threads 0 -f alsa -ac 2 -i hw:0 -f flv "%s"' % (xvfb.new_display, info['destination'])