Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (57)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (9694)

  • Video editor application in android [on hold]

    26 janvier 2019, par Mustafa Çakar

    I want to make a video editor app, I also I want to add and remove text in the video. You can check renderforest video tab for example. I can use FFMPEG for basic editing operations like cropping, cutting, but I have no idea about set text or change text in the video. Do you have a source or library to suggest ? Sorry for my bad english.

  • FFMPEG inside a C#/C++ multithreaded application [on hold]

    24 décembre 2013, par oferbar

    I've inherited an application written mostly in C# that calls FFMPEG libraries to decode video frames, specifically avcodec_decode_video2().

    The general flow of a frame is like this :

    1. A frame is allocated and filled inside a C# dedicated thread (a.k.a. 'player').
    2. A managed C++ object is called to decode the frame.
    3. The Decode() method is initializing the parameters for avcodec_decode_video2() and calling this function.

    When I have 1-6 thread running in parallel and decoding frames I get no errors.
    However, when I increase the number of threads (>6) the decoding function starts failing and the got_picture_ptr parameter is returned as zero (no picture was decoded).

    The FFMPEG log gave me a hint : "no picture ooo" = out of order frames.

    I suspect that something fishy is going on with passing a managed memory block inside a frame to an the unmanaged code, maybe the pointer is moved ?

    Anyway, any advice on where to look would be greatly appreciated. I've done quite a lot of digging into this, but so far without luck.

    [Windows 7/64-bit, .NET 4.0.]

    Thx !

    Ofer

  • Convert RTMP to RTP in iOS application for sending it to Kurento Media Server

    4 janvier 2019, par utkarsh agarwal

    Working on implementing Screen Sharing(Replay Kit) in iOS app using Kurento Media Server. I get CMSampleBuffer which follows RTMP protocol. But Kurento doesn’t support RTMP. It does support RTP. Is there a way to convert from RTMP to RTP. I read about ffmpeg but it seems to need to be implemented on server side which require a lot of change in current flow something like below
    [Browser] -> RTMP -> [Node_Media_Server(srs)] -> RTMP ->

    [FFmpeg] -> RtpEndpoint -> [Kurento] -> WebrtcEndpoint -> [Browser]

    Will this flow be efficient enough ?

    Is there a way to convert it from client side i.e iOS application ?