Recherche avancée

Médias (91)

Autres articles (48)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6107)

  • How can I embed a .ts stream on my website, using m3u8 that works with HLS.js ?

    20 décembre 2022, par Anonymous

    I have the URL of the stream that I wanted to embed on my website, using HLS.js but I can't because it has got the format of .ts (Transport Stream).

    


    I have already tried VLC http streaming transconversion but it hasn't worked. If you consider using ffmpeg please let me know how you done it !

    


    Here it is the stream : http://iptvfree1.com:7899/live :.cid.9b5190e69349237e/hGYOfCADiS/160

    


    Sorry about my poor english,and my "noob" thinking about the topic. Thanks

    


  • Decoding HECV with FFMpeg. Multiple slices I frame issue

    8 mars 2023, par lucienii

    I'm facing issue decoding camera with HEVC codec and RTSP transport (live555). I'm trying to decode frames with ffmpeg (avcodec_send_packet/avcodec_receive_frame) but it decodes only the first 1/3 of the picture and the others 2/3 stay green rectangle. Each frame is sent divided into 3 parts (slices) :

    


      

    • I-Frame is I-B-I
    • 


    • P-Frame is P-P-P
    • 


    


    I suppose FFmpeg is able to deal with this because it agrees with HEVC specification.
Have I to "concatenate" 3 slices before send them to ffmpeg ?
Could you help me please ?

    


    I try to send all slices before receive them but this doesn't work.

    


  • ffmpeg working with named pipes - Ubuntu 18

    4 mai 2020, par Nícholas

    I am trying to work ffmpeg with name pipes but I can't get it to work as I want. My idea is simple : I have multiple segments of video and audio, I will use ffmpeg to use them as inputs and produce one file which contains both audio and video. The result of this will be sent to a name pipe and then I will ffmpeg again to read from the name pipe and finally send the output as hls stream.

    



    Heres what I tried so far

    



    mkfifo stream


    



    Loop through files

    



    ffmpeg -i video01.mp4 -i audio01.mp3 -c copy pipe:1 > stream


    



    This command will be inside python code to read the next video02.mp4 and audio02.mp3 and send output to stream.

    



    Now ffmpeg has to read data from stream. Heres the command I tried

    



    ffmpeg -i stream -c copy -hls_time 6 -hls_flags delete_segments stream.m3u8


    



    When I try running first ffmpeg command it doesn't seem to "write data" into my pipe named stream. So when I try second ffmpeg it doesn't have anything to read and it justs hangs. What I noticed thought, is that if I run both commands using | it will output my stream.m3u8 but the problem is that I want to continuosly send data to my named pipe stream and another instance of ffmpeg to read from said named pipe continuosly.

    



    What am I doing wrong ? I have tried this answers so far
Working with mkfifo and transport streams, is this possible ?
How to make ffmpeg write its output to a named pipe
https://superuser.com/questions/901339/continuous-streaming-from-an-empty-pipe-then-adding-data-to-the-pipe-on-demand

    



    At first glance it seemed something really simple to do but I am missing something here and I hope someone can help me.

    



    Thanks in advance.