Recherche avancée

Médias (91)

Autres articles (54)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • avcodec/movtextdec : Add support for large boxes(>32 bit)

    21 mai 2015, par Niklesh
    avcodec/movtextdec : Add support for large boxes(>32 bit)
    

    Signed-off-by : Niklesh <niklesh.lalwani@iitb.ac.in>

    • [DH] libavcodec/movtextdec.c
  • How to display a stream of mdat/moof boxes in VLC ? [closed]

    8 juillet 2024, par roacs

    I am trying to display a real-time video stream in VLC. The snag is that the real-time video that is being received is a stream of just the mdat and moof boxes of a fragmented MP4 file that is being recorded elsewhere. The initialization information (ftyp/moov) is not and will never be available in the real-time stream. There is also no audio.

    &#xA;

    I have access to initialization information (ftyp/moov) of a previously completed file and can use that to aid in the processing/streaming of the real-time mdat/moof boxes.

    &#xA;

    I am currently extracting the contents of the mdat box, splitting those up and packaging them in 188 byte MPEG-TS packets and multicasting them for VLC to pick up. And just as a shot in the dark, every 50 mdat's I am also packaging the SPS and PPS NALUs from the initialization information of the completed file and multicasting those in one MPEG-TS packet.

    &#xA;

    Input looks like this :

    &#xA;

      &#xA;
    • ...
    • &#xA;

    • mdat 1
    • &#xA;

    • moof 1
    • &#xA;

    • mdat 2
    • &#xA;

    • moof 2
    • &#xA;

    • ...
    • &#xA;

    • mdat N
    • &#xA;

    • moof N
    • &#xA;

    • ...
    • &#xA;

    &#xA;

    And my output looks like this :

    &#xA;

      &#xA;
    • ...
    • &#xA;

    • MPEG-TS 1 containing first 184 bytes of mdat 1
    • &#xA;

    • MPEG-TS 2 containing next 184 bytes of mdat 1
    • &#xA;

    • ...
    • &#xA;

    • MPEG-TS N containing last 184 bytes of mdat 1
    • &#xA;

    • MPEG-TS N+1 containing first 184 bytes of mdat 2
    • &#xA;

    • MPEG-TS N+2 containing next 184 bytes of mdat 2
    • &#xA;

    • ...
    • &#xA;

    • MPEG-TS N+M containing last 184 bytes of mdat 2
    • &#xA;

    • ...
    • &#xA;

    • MPEG-TS containing SPS and PPS NALU
    • &#xA;

    • ...
    • &#xA;

    &#xA;

    VLC gets the data but no video playback.

    &#xA;

    How do I process this input in order to get it to play in VLC ?

    &#xA;

  • How can we know the supported transport for given URL in av_fromat_open_input() FFmpeg

    6 juin 2014, par Tarun Seera

    I a using av_format_open_input() for open local and live both URL.
    The supported transport for live is TCP and for local is UDP.
    I would like to know supported transport for given URL at run time how can achieve this.