Recherche avancée

Médias (91)

Autres articles (56)

  • 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 de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • iphone ios sample ffplay main.c —> FFmpeg.c change and input parameter , following errer please advice

    4 août 2017, par 224ok

    FFmpeg main c source

    int main(int argc, char **argv)
    {

       int flags, i;
       argv[1] = "-i";
       argv[2] = "ipod-library://item/item.mp3?id=1218551163727305907";    
            //argv[2] = "mon.mp3";

       argv[3] = "-acodec";
       argv[4] = "libfaac";
       argv[5] = "-ac";
       argv[6] = "2";
       argv[7] = "-ar";
       argv[8] = "44100";
       argv[9] = "-ab";
       argv[10] = "128k";
       argv[11] = "output.aac";
       argv[3] = "-vn";
       argv[4] = "-acodec";
       argv[5] = "libfaac";
       argv[6] = "-ac";
       argv[7] = "2";
       argv[8] = "-ar";
       argv[9] = "44100";
       argv[10] = "-ab";
       argv[11] = "128k";
       argv[12] = "output.aac";
       //  argv[14] = "rtsp://video.bouygtel.fr/50400/tf1.sdp";
       argc += 12;

    error : ipod-library ://item/item.mp3 ?id=1218551163727305907 : No such file or directory
    and if
    argv[2] = "mon.mp3" ; ---> mon.mp3 : No such file or directory

    please advice.

  • How to let OMXPlayer show embeded SRT subtitles in a mp4 file ?

    20 novembre 2022, par Eddy Sorngard

    Is there a way to get OMXPlayer to display the embedded subtitles in foo.mp4 without extracting the subtitles with ffmpeg to foo.srt, and without hardcoding the subtitles into foo.mp4 ?

    


  • How to keep the file size of a stream small and have manycam show a live picture ?

    6 juillet 2017, par P. Dee

    I am using this command

    ffmpeg -i "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov" "C:\wamp\www\streaming.mjpeg"

    to stream to "C :\wamp\www\streaming.mjpeg". Then I am using SimpleHTTPServer to create a web server for this folder.

    Then I am pointing ManyCam’s ip camera to the address of the file on the web server

    http://127.0.0.1:8000/streaming.mjpeg

    And select it in ManyCam.

    As a result ffmpeg creates a file that gets bigger and bigger and ManyCam shows an endless time-lapsed loop of what the camera records or recorded minutes ago.

    How to keep the file size small and have ManyCam show a live video feed ?