Recherche avancée

Médias (91)

Autres articles (83)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6971)

  • libx264 fails on HTTP Live Streaming (FFmpeg)

    12 juillet 2016, par shintaroid

    I want to live stream with HTTP Live Streaming, but I have problem with libx264 or maybe something other.

    My hardware and software environment :

    • Macbook Pro
    • VirtualBox with Ubuntu 16.04
    • Nginx and FFmpeg (in Ubuntu)

    I am able to stream a static video file (in Ubuntu with Nginx and FFmpeg).
    The FFmpeg command is as following :

    $ffmpeg -i /my/sample/video.mp4 -codec:v libx264 -f hls /output/file.m3u8

    But when it comes to webcam (live streaming), Mac OS Safari fails to open the stream. I used the following command :

    $ffmpeg -i /dev/video0 -codec:v libx264 -f hls /output/file.m3u8

    I guess it’s the problem of libx264 because when I use mpeg2video encoder, Mac OS Safari indeed can play the stream :

    $ffmpeg -i /dev/video0 -codec:v mpeg2video -f hls /output/file.m3u8

    I know there is a library called video4linux2, should I use video4linux2 for capturing my webcam ? But I don’t know the appropriate FFmpeg command for HTTP Live Streaming (I tried FFserver but there is error something like cannot rename hls)

    anyone shed some light on my problem ?

  • libx264 fails on HTTP Live Streaming (FFmpeg)

    12 juillet 2016, par shintaroid

    I want to live stream with HTTP Live Streaming, but I have problem with libx264 or maybe something other.

    My hardware and software environment :

    • Macbook Pro
    • VirtualBox with Ubuntu 16.04
    • Nginx and FFmpeg (in Ubuntu)

    I am able to stream a static video file (in Ubuntu with Nginx and FFmpeg).
    The FFmpeg command is as following :

    $ffmpeg -i /my/sample/video.mp4 -codec:v libx264 -f hls /output/file.m3u8

    But when it comes to webcam (live streaming), Mac OS Safari fails to open the stream. I used the following command :

    $ffmpeg -i /dev/video0 -codec:v libx264 -f hls /output/file.m3u8

    I guess it’s the problem of libx264 because when I use mpeg2video encoder, Mac OS Safari indeed can play the stream :

    $ffmpeg -i /dev/video0 -codec:v mpeg2video -f hls /output/file.m3u8

    I know there is a library called video4linux2, should I use video4linux2 for capturing my webcam ? But I don’t know the appropriate FFmpeg command for HTTP Live Streaming (I tried FFserver but there is error something like cannot rename hls)

    anyone shed some light on my problem ?

  • FFmpeg HLS Live Stream Stuck with iOS 11

    1er novembre 2017, par Lamorun

    I’ve exp with FFmpeg but i recent problem with iOS 11 (Recent release for Apple)

    I used FFmpeg for stream HLS Live Stream for only iPhone and iPad in closed app for online courses. My problem is the next :

    I used this code for HLS Live Stream :

    ffmpeg -i "Input" -preset fast -c:v libx264 -c:a aac -ac 1 -strict -2 -crf 18 -profile:v baseline -maxrate 1000k -bufsize 1835k -pix_fmt yuv420p -b:a 64k -flags -global_header -hls_time 20 -hls_list_size 6 -hls_wrap 10 -start_number 1 /m3u8/test.m3u8

    This work perfect in iOS 8, 9 and 10 devices. But with new version iOS 11, video is stuck after about 30 to 40 seconds, as seen in the image :

    ios11stuck

    I have searched for hours and hours. I have done many tests, but I can not get it out, since it works perfectly with iOS 8,9 and 10 (test in somes devices, even working perfectly on a device with iOS 10, update to iOS 11, and stop working immediately, downgrade to iOS 10 and work again)

    I hope someone can help me out, thank you and greetings to all