Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (45)

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

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

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

Sur d’autres sites (5129)

  • How can you get a webm file without headers to play video and audio ?

    31 août 2023, par John

    Right now I have webm files that are missing the header information so they don't play. How can I fix them so that they play ? My only hack is to get a small webm file with header information and prepend the file, then encode to mp4 and mp3.

    


    ffmpeg -i input.webm output.mp4
[matroska,webm @ 0x13481be00] Format matroska,webm detected only with low score of 1, misdetection possible!
[matroska,webm @ 0x13481be00] EBML header parsing failed
kyle.webm: Invalid data found when processing input


    


    Example file : https://drive.google.com/file/d/1j21wxHyQimMorWU99MJx—4YhgSimkp7/view?usp=share_link

    


  • ffmpeg play RTSP stream while recording

    18 décembre 2018, par Emiliano Spada

    I successfully record to a file a RTSP stream using ffmpeg with the following command :

    ffmpeg -i "rtsp://1.1.1.1:554/user=admin&password=admin&channel=1&stream=1" -acodec copy -vcodec copy -movflags frag_keyframe+empty_moov -y http://www.example.com/rec/1.mp4

    now I need to play video while ffmpeg is still writing to file. Even changing file format, is it possible ?

  • Encoding sounds to play in a Google Hangouts app with ffmpeg

    12 mai 2014, par user3463570

    I have a Google Hangouts app and I am trying to let the user play a sound that I provide.

    Google has this covered, with its Audio Resource, but it only accepts specifically encoded sound files, PCM 16 wav files.

    I have been trying to encode my files using ffmpeg, but it does not seem to be working.
    Any idea as to what I am doing wrong ?

    Here is my ffmpeg command line :
    ffmpeg -i sound.mp3 -map_metadata -1 -flags bitexact sound.wav

    Thanks for your help