Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (65)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • how to make live streaming for multiple clients

    19 septembre 2014, par Abdulrahman Alcharbaji

    I have new project to do and I need some help to know where to start.
    I have more than 1000 DVR each with 4 channels, I need to be able to do live streaming for multiple clients, and clients could be android,iPhone or windows.
    Now throw searching i tried to check ffserver and ffmpeg but i couldn’t find much references to guide me throw a solution for my problem.
    NOTE : the DVRs streaming with h.264 encoding.

    So Please can anybody help me by guiding me for a start or some good references about this particular issue.

    Many Thnaks

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

    


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