Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (26)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (7281)

  • Reverting the 'cacheBust' option default back to 'true'.

    22 mars 2014, par JamesMGreene
    Reverting the 'cacheBust' option default back to 'true'.
    

    Fixes #357.

  • 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;