Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (34)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5787)

  • How to remove MPEG-2 transport from H264 video stream

    10 mai 2016, par Nilesh Wagh

    I have live video source fro video card which send H264 video stream data with MPEG-2 transport(MP2T), I am receiving this data in C++ application. But for streaming purpose, I don’t want MPEG-2 transport needs only raw H264 data.

    Please anyone can help me to remove MPEG-2 transport from H264 video data and get only raw H264 data or suggest any reference so I can do it in c++ application.

  • How to stream binary files using MPEG-2 TS

    26 novembre 2015, par James

    I am working on a software system to stream videos over MPEG-2 TS using FFMpeg. I have got an additional requirement of streaming pdf files. Can some one point me to the relevant link / ideas ?

    Simply putting pdf contents as TS payload did not work for me. I have created necessary PAT and PMT. Do I need to set PCR in adaptation field in PMT ?

  • Command to stream MPEG-1 video

    14 avril 2020, par xybrek

    I'm trying to stream MPEG-1 video over FFMPEG with

    



    ffmpeg -i "out.ts" -f flv -listen 1 -i rtmp://localhost:8889/live/app -c copy -f flv -listen 1 rtmp://localhost:1935/live/app


    



    The out.ts file is a MPEG-1 video encoded with

    



    ffmpeg -i out.avi -f mpegts -codec:v mpeg1video -b:v 1500k -r 30 -bf 0 -codec:a mp2 -b 0 -q 5 -t 1 out.ts


    



    When I try to open the stream with VLC : rtmp://localhost:1935/live/app media is not playing. What's the command to stream MPEG-1 video over FFMPEG ?