Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (80)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5879)

  • ffmpeg can play video but not a stream containing the same data

    21 mai 2017, par Robbsen

    This is my first time encountering video codecs/video streaming.

    I am receiving raw h.264 packets over TCP. When I connect to the socket, listen to it and simply save the received data to a file, I am able to play it back using

    ffplay data.h264

    However, when I try to directly play it from the stream without saving it, using

    ffplay tcp://addr:port

    all I get is the error

    Invalid data found when processing input

    Why is that ?

  • ffmpeg can play video but not a stream containing the same data

    21 mai 2017, par Robbsen

    This is my first time encountering video codecs/video streaming.

    I am receiving raw h.264 packets over TCP. When I connect to the socket, listen to it and simply save the received data to a file, I am able to play it back using

    ffplay data.h264

    However, when I try to directly play it from the stream without saving it, using

    ffplay tcp://addr:port

    all I get is the error

    Invalid data found when processing input

    Why is that ?

  • FFmpeg Muxing binary data with video into MPEG-TS stream

    22 avril 2020, par diogoaos

    I'm trying to create a MPEG-TS stream with FFmpeg. I feed FFmpeg video form a file and binary data from a UDP stream.

    



    ffmpeg -re -i video.mp4 \
       -f data -i udp://localhost:5000 \
       -map 0:0 -map 0:1 -map 1:0 -codec copy \
       -f mpegts test.ts


    



    I use socat to connect to FFmpeg and type random data :

    



    socat udp:localhost:5000 -


    



    When I try to demux the data channel (channel 2 is for data), it's empty :

    



    ffmpeg -i test.ts -map 0:2 -c:d copy -f data -


    



    I've also tried doing this feeding directly text files and that works fine (I can demux the data stream from the resulting .ts file and it's equal). I've also tried using named pipes connected to a Python script, but that didn't work well (FFmpeg seems to wait for an EOF and than does not keep reading the named pipe).

    



    How do I mux video and binary data from different sources into a single MPEG Transport Stream ?