Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (90)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (10283)

  • avcodec/avcodec.h : clarify decoupled decode/encode API docs

    15 mars 2017, par Marton Balint
    avcodec/avcodec.h : clarify decoupled decode/encode API docs
    

    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/avcodec.h
  • Flash media server invalid mp4

    19 décembre 2012, par Ben Ford

    I have an MP4 file that was ripped from a DVD containing chapters using handbrake.
    I've then used ffmpeg to convert that rip into seperate mp4 files for dynamic streaming with Adobe's Flash Media Server.

    I have used exactly the same ffmpeg parameters before and had no problem. However this time, I get output from ffmpeg :

    max_analyze_duration reached

    The resulting files won't stream from FMS. There's no error in the FMS logs or web console.
    Are there any known reasons that FMS wouldn't stream files like this ?

    Or does anyone know of any other diagnostic tool to analyze what's going on within FMS ?

    Thanks
    Ben

  • live-streaming media with

    8 février 2012, par Thanh Hoang

    My live-streaming system streams media in following step :

    1. Server loads source (from a file, webcam,...)
    2. Server decodes this source by using ffmpeg to get audio and video stream in raw format
    3. Server encodes audio and video to aac and libx264 and then stores them with [AVPacket] (http://ffmpeg.org/doxygen/0.6/avpacket_8c.html)
    4. Then server transmits these packets to client
    5. Client receive these packets, then calculates pts and dts and then display them using libsdl. (following this [tutorial] (http://dranger.com/ffmpeg/tutorial01.html).

    And now, I want to change in client. I want when client receive audio and video packets, It will stream them under http stream, rtp stream or somethings like those to a player such as windows media player, flash player.... Anyone can helps me ? Thanks a lot. :)