Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (79)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8279)

  • 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 PYTHON VIDEO STREAMING [on hold]

    11 mai 2015, par ashad rahman

    I write a python script by ffmpeg command rtmp video streaming. Script given below :

    import system
    import os
    import subprocess

    os.chdir('c:\\ffmpeg\\bin\\')
    subprocess.call(['ffmpeg' ,'-re' ,'-i', 'D:\\www\\cms\\playlist\\playlist_1.flv', '-f', 'flv', 'rtmp://a.rtmp.youtube.com/live2/ashadnext.1hxh-gxfq-jm98-a51r'])

    But it does not work it work only by command prompt