Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (36)

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

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5732)

  • How to download a 61th minute video for 5 seconds remotely ?

    18 octobre 2015, par user186259

    As you can quickly download video from a remote part of a large video file with ffmpeg ?

    ffmpeg -ss 01:00:00 -i http://example.com/videofile.flv -t 00:01:00 -vcodec copy -acodec copy file.flv

    Here I miss the first hour of video and download 61th minutes. It takes 20 minutes. Time of the operation = end of video and splitting it locally.

    How can I speed up the process ?

  • Ffmpeg only saves files but don't re transmit the stream in node

    3 juin 2018, par sonseiya

    am using ffmpeg to get a video stream, save a file and re send to another machine.

    Basicaly i am using the following command :

    ffmpeg -timeout 60 -i udp://192.168.0.12:3000 -c:v libx264 -c:a mp2
    -f tee -map 0:v -map 0:a
    "[onfail=ignore]6067_20180602_214828.ts|[f=mpegts]udp://192.168.0.12:4000"

    The file is being generating perfectly, my problem is that i am not getting the udp stream when i try to test it using vlc.

    Did i miss something ?

    I get the command from : https://ffmpeg.org/ffmpeg-formats.html#tee

    Regards

  • .mpd deleted after played

    18 novembre 2020, par thxbox

    I would like to stream mp4 file with .mpd file. I installed MP4Box to convert mp4 to .mpd file, with this command

    


    P4Box -dash 4000 -frag 4000 -dash-profile onDemand -segment-name out-seg -time-shift -1 -out prev_video.mpd prev_video.mp4


    


    on my Ubuntu server

    


    I also use nginx-rtmp-module to do video streaming.

    


    My problem is after I play .mpd file with VLC Player then .mpd file was auto deleted.
so question is, is it possible to keep .mpd in my server ? or I miss some configuration while convert .mp4 to .mpd with MP4Box

    


    Thank