Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (29)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • ffmpeg - avcodec_receive_frame returns -11, why and how to solve it ?

    26 mars 2022, par Kalen Clark

    I'm learning to use ffmpeg in my engine,

    


    and I wanna decode the first frame of video stream and output it to an image file.

    


    I tried and just can't figured out why it returns -11.

    


    My code :(error in last 5 lines of code, line 70-74)

    


    Link to my code

    


  • Nodebots Day Sydney 2014 (take 2)

    25 juillet 2014, par silvia

    Nodebots Day Sydney 2014 (take 2)

    Category : Array
    Uploaded by : Silvia Pfeiffer
    Hosted : youtube

  • Ffmpeg creating m3u8 from mp4, video file size

    3 février 2017, par cvdogan

    I am using ffmpeg to convert mp4 to m3u8. But first I need to make mp4 smaller. I use this code to make it smaller :

    ffmpeg -i big.mp4 -b 1000000 small.mp4

    Then I use this code to convert it to m3u8

    ffmpeg -i small.mp4 -g 60 -hls_time 2 -hls_list_size 0 -hls_segment_size 500000 output.m3u8

    Is there a way to do this in once ?