Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (67)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11809)

  • How to do FFMPEG live transcoding to HTML5 video from file(.MP4, .MKV) in PHP ?

    12 octobre 2014, par user3534650

    I’m using windows, tried to follow this tutorial and downloaded the code : blog page is http://sixserv.org/2010/11/30/live-transcoding-for-video-and-audio-streaming/ and the github https://github.com/4poc/php-live-transcode. It doesn’t work, I’m getting some errors in mplayer saying "MPlayer has not identified the file you provided".

    I just need a simple working live media transcoder that can work on most browsers even in mobile devices (HTML5) using FFMPEG in PHP. I’ve been searching this the entire time, I found nothing.

  • FFmpeg C API - seek through live stream

    29 mai 2014, par Erik Villegas

    I’ve opened a live RTMP stream using FFmpeg’s C library, and I need to programmatically seek to the very end of the stream. This is after the stream is paused for an indeterminate amount of time. The closest I could get is the following :

    av_seek_frame(pFormatCtx, -1, pFormatCtx->duration, 0);
    avcodec_flush_buffers(pCodecCtx);

    But the duration is 0 for live streams. Any ideas ?

  • ffmpeg startup latency for live streams

    27 janvier 2014, par mustafa.yavuz

    When we open a live stream with ffmpeg or ffplay it waits for a while and then starts to play. I should decrease this initial latency as possible. However, when I process live stream I ignore all video frames since I am working only audio data. My question is that, due to ignoring video frames, does it compensate initial latency so I can process audio of live stream in real time almost with no latency ?