Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (111)

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

  • How to stream with ffmpeg via http protocol

    29 juillet 2022, par Boehmi

    I'm currently doing a stream that is supposed to display correctly within Flowplayer. 
First I send it to another PC via RTP. Here, I also checked with VLC that the codec etc. arrive correctly, which they do.

    



    Now I want to expose this stream to Flowplayer as a file, so it can be displayed, via something I used in VLC : 
http://localhost:8080/test.mp4
for example.

    



    The full line I got is : ffmpeg -i input -f mp4 http://localhost:8080/test.mp4

    



    However, no matter how I try to do this, I only get an input/output error. Is this only possible with something like ffserver or another ?

    



    What I think is this doesn't work because ffmpeg can't act as a server ; on VLC it works since it can. (Though VLC ruins the codecs I set and it can't be read afterwards for some reason)

    



    A (sort of) workaround I can use is saving the RTP stream to a file, and then letting flowplayer load it. This, however, only works once the file is not accessed anymore ; I get a codec error otherwise.

    


  • libavformat/http: Handled multiple_requests option during write

    29 novembre 2017, par Jeyapal, Karthick
    libavformat/http: Handled multiple_requests option during write
    
    • [DH] libavformat/http.c
  • http/https for ffmpeg in android

    1er mars 2015, par trololo

    Can somebody explain how to build ffmpeg with http?
    I’m using flags --enabled-protocols --enabled-protocol=http --enabled-protocol=https --list-protocols
    while compiling i see http as protocol but the resultant ffmpeg

    03-01 22:12:35.221: D/APlay(3657): Supported file protocols:
    03-01 22:12:35.221: D/APlay(3657): Input:
    03-01 22:12:35.221: D/APlay(3657): cache
    03-01 22:12:35.221: D/APlay(3657): concat
    03-01 22:12:35.221: D/APlay(3657): crypto
    03-01 22:12:35.221: D/APlay(3657): data
    03-01 22:12:35.221: D/APlay(3657): file
    03-01 22:12:35.221: D/APlay(3657): hls
    03-01 22:12:35.221: D/APlay(3657): pipe
    03-01 22:12:35.221: D/APlay(3657): subfile
    03-01 22:12:35.221: D/APlay(3657): rtmp
    03-01 22:12:35.221: D/APlay(3657): rtmpe
    03-01 22:12:35.221: D/APlay(3657): rtmps
    03-01 22:12:35.221: D/APlay(3657): rtmpt
    03-01 22:12:35.221: D/APlay(3657): rtmpte
    03-01 22:12:35.221: D/APlay(3657): Output:
    03-01 22:12:35.221: D/APlay(3657): file
    03-01 22:12:35.221: D/APlay(3657): md5
    03-01 22:12:35.221: D/APlay(3657): pipe
    03-01 22:12:35.221: D/APlay(3657): rtmp
    03-01 22:12:35.221: D/APlay(3657): rtmpe
    03-01 22:12:35.221: D/APlay(3657): rtmps
    03-01 22:12:35.221: D/APlay(3657): rtmpt
    03-01 22:12:35.221: D/APlay(3657): rtmpte

    What I’m doing wrong ???