Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (32)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4588)

  • Linux ffmpeg live transcode'ing alternative

    1er août 2014, par ppoeas

    Is there any opensource alternative to ffmpeg and VLC to live video transcoding from HTTP streaming to RTMP or other ?

    FFMPEG caused my CPU (AMD 4.0GHZ 8Core) is loaded 100% with only 8 SD streams.

    Thanks for help.

    PS.
    I think I don’t need to transcode my video, i can also stream with something like http video proxy. Source is in HTTP streaming format.

  • How to sync between recording and input live video stream ?

    6 octobre 2012, par Abhishek Bansal

    I am working on a project in which I am receiving raw frames from some input video devices. I am trying to write those frames in a video files using FFMPEG library.
    I have no control over the frame rate i am getting from my input sources. This frame rate varies in run-time also.
    Now my problem is how do i sync between recorded video and coming video. Depending upon frame-rate i set in FFMPEG and actual frame rate that i am receiving playback of recorded video is either fast or slow than input video.
    I tried to add timestamps (as numOfFrames) in encoded video as per following link
    but that didn't help.

    ffmpeg speed encoding problem

    Please tell me a way to synchronize both. This is my first time with FFMPEG or any multimedia libraries so any examples will be highly appreciated.

    I am using directshow ISampleGrabber interface to capture those frames.
    Thank You

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