Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (82)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6945)

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

  • Linux ffmpeg live transcode'ing alternative

    1er août 2014, par ppoeas

    Is there any opensource alternative to ffmpeg and VLC to live video transcoding from HTTP streaming to RTMP or other ?

    FFMPEG caused my CPU (AMD 4.0GHZ 8Core) is loaded 100% with only 8 SD streams.

    Thanks for help.

    PS.
    I think I don’t need to transcode my video, i can also stream with something like http video proxy. Source is in HTTP streaming format.