Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

Sur d’autres sites (10452)

  • Ffmpeg or avconv tool stops live streaming video stops after 10 mins

    21 janvier 2014, par Yuvraj Kakkar

    A RTMP live streaming video is being send to FMS server via ffmpeg or avconv tool.But when it is played by command line using Java programming language as follows -

    avconv -async 15 -timelimit 4000 -i  rtmp://IP/live/file-name -shortest -s 176*144 -r 10 \
    -b:v 56k -ab 12k -ac 1 -ar 22050 -f flv  rtmp://IP/live/file-name2

    But avconv stops encoding live video stream after 10 minutes when i run command via Runtime Environment in Java. Where as command directly executed on command prompt properly runs properly in Ubuntu (Linux OS).

  • c# what is the best way to record live frames as Video

    13 février 2015, par Balu

    I have been checking around to convert live frames into video. And I found (NReco.VideoConverter) ffmpeg lib to convert live frames to Video, but the problem is it is taking time to write each frame to ConvertLiveMediaTask (async live media task conversion).

    I have an event that provides (raw) frames (1920x1080) (25fps) from IpCamera. Whenever I get frame I am doing the following

    //Image availbale event fired
    //...

    //...
    // Record video is true
    if(record)
    {
    //////////////############# Time taking part ##############//////////////////////
    var bd = frameBmp.LockBits(new Rectangle(0, 0, frameBmp.Width, frameBmp.Height), ImageLockMode.ReadOnly, PixelFormat.Format24bppRgb);                        
     var buf = new byte[bd.Stride * frameBmp.Height];                      
     Marshal.Copy(bd.Scan0, buf, 0, buf.Length);
     // write to ConvertLiveMediaTask
     convertLiveMediaTask.Write(buf, 0, buf.Length); // ffMpegTask
     frameBmp.UnlockBits(bd);
    //////////////////////////////////////////////////////////////////////////////////
    }

    As the above part is taking much time, I am loosing the frames.

    //Stop recording
    convertLiveMediaTask.Stop(); //ffMpegTask

    Stop recording, for this part I have used BackgroundWorker, because this takes too smuch time to save the media to file.
    My question is how can I write the frame to ConvertLiveMediaTask in faster way ? are there any possibilites to write it in background ?
    Please give me suggestions.

  • ffmpeg live preview before saving video

    15 avril 2020, par Ruslan Leshchenko

    I use mobile-ffmpeg for Android and it works fine, but I have an issue with a live preview before saving the video. For example, I create video with some filters and want to show result fo user before saving it. I didn't find ffplay for android. Does somebody know if there is a solution ?