Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (30)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (3432)

  • How to stream with ffmpeg via http protocol

    29 juillet 2022, par Boehmi

    I'm currently doing a stream that is supposed to display correctly within Flowplayer. 
First I send it to another PC via RTP. Here, I also checked with VLC that the codec etc. arrive correctly, which they do.

    



    Now I want to expose this stream to Flowplayer as a file, so it can be displayed, via something I used in VLC : 
http://localhost:8080/test.mp4
for example.

    



    The full line I got is : ffmpeg -i input -f mp4 http://localhost:8080/test.mp4

    



    However, no matter how I try to do this, I only get an input/output error. Is this only possible with something like ffserver or another ?

    



    What I think is this doesn't work because ffmpeg can't act as a server ; on VLC it works since it can. (Though VLC ruins the codecs I set and it can't be read afterwards for some reason)

    



    A (sort of) workaround I can use is saving the RTP stream to a file, and then letting flowplayer load it. This, however, only works once the file is not accessed anymore ; I get a codec error otherwise.

    


  • How to stream with ffmpeg via http protocol

    10 mai 2017, par Boehmi

    I’m currently doing a stream that is supposed to display correctly within Flowplayer.
    First I send it to another PC via RTP. Here, I also checked with VLC that the codec etc. arrive correctly, which they do.

    Now I want to expose this stream to Flowplayer as a file, so it can be displayed, via something I used in VLC :
    http://localhost:8080/test.mp4
    for example.

    The full line I got is : ffmpeg -i input -f mp4 http://localhost:8080/test.mp4

    However, no matter how I try to do this, I only get an input/output error. Is this only possible with something like ffserver or another ?

    What I think is this doesn’t work because ffmpeg can’t act as a server ; on VLC it works since it can. (Though VLC ruins the codecs I set and it can’t be read afterwards for some reason)

    A (sort of) workaround I can use is saving the RTP stream to a file, and then letting flowplayer load it. This, however, only works once the file is not accessed anymore ; I get a codec error otherwise.

  • How to get bit stream rate of a mpeg Transport Stream ?

    28 septembre 2015, par CompNet

    How can we get the bit rate of a transport stream from the TS source ? One way is to use a constant bitrate while multiplexing the encoded video into TS stream. But how does the variable bitstream work ?

    I found the command with ffmpeg like :

    ffmpeg -i encoded.mp4 -c copy -map 0 -vbsf h264_mp4toannexb mpegts out.ts

    but could not understand the meaning of -vbsf h264_mp4toannexb. Can anyone please explain me how does variable bitrate work ?

    Also, is there any other way we can find the timestamp of each TS packet multiplexed in the Transport Stream ?