Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (112)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (16302)

  • ffmpeg convert mov file to mp4 for HTML5 video tag IE9

    27 septembre 2016, par Adidi

    I looked everywhere here and on google - there is no valid command that works for IE9.
    some how IE9 is missing something.
    All that I tried worked everywhere else : chrome,safari,mobile device etc...
    I want one command that will convert it and I can use it in every device suppose to support mp4 in HTML5 video tag.

    I use this commands :

    ffmpeg -i movie.mov -vcodec copy -acodec copy out.mp4
    ffmpeg -i movie.mov -vcodec libx264 -vprofile high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale=-1:480 -threads 0 -acodec libvo_aacenc -b:a 128k -pix_fmt yuv420p outa.mp4
    ffmpeg -i movie.mov -b:V 1500k -vcodec libx264 -preset fast -g 30 adel.mp4
    ffmpeg -i movie.mov -acodec aac -strict experimental -ac 2 -ab 160k -vcodec libx264 -preset slow -f mp4 -crf 22 lamlam.mp4
    ffmpeg -i movie.mov -acodec aac -strict experimental -ac 2 -ab 160k -vcodec libx264 -preset slow -profile:v baseline -level 30 -maxrate 10000000 -bufsize 10000000 -f mp4 -threads 0 adiel.mp4

    etc.. again all this commands produce a valid mp4 file which works on chrome,safari etc... and works even when I launch them in windows itself using window media player.
    When I put this file in the video tag (I am using http://videojs.com/) in IE9 it isn’t working !

    <div class="vidoco-content" style="margin-top: 20px;">
    <video class="video-js vjs-default-skin vidoco-center" controls="controls" preload="none" width="600" height="400" poster="&lt;?php echo(DOMAIN); ?>static/test.jpg">
       <source src="&lt;?php echo(DOMAIN); ?>static/out.mp4" type="video/mp4"></source>
    </video>
    </div>

    If I use the software miro video converter to convert the same mov file to mp4 - it converted fine and I can play it in IE9 !
    miro converter is also using embedd ffmpeg inside it so I am sure it’s only a metter of the right ffmpeg command and parameters.
    In my apache htaccess I set the correct mime types for my files and I see it indeed correct when looking in IE developer tools :

    AddType audio/aac .aac
    AddType audio/mp4 .mp4 .m4a
    AddType audio/mpeg .mp1 .mp2 .mp3 .mpg .mpeg
    AddType audio/ogg .oga .ogg
    AddType audio/wav .wav
    AddType audio/webm .webm

    AddType video/mp4 .mp4 .m4v
    AddType video/ogg .ogv
    AddType video/webm .webm

    I am struggling with this for a long time so any help would be much appreciated.

    Thanks !

  • Moved internal html5Only to soundManager.html5Only, for detecting "HTML5-only mode" (iOS, Safari or others without Flash etc.)

    17 juin 2011, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js Moved internal html5Only to soundManager.html5Only, for detecting "HTML5-only mode" (iOS, Safari or others without Flash (...)

  • HTML5 live streaming usin FFmpeg

    4 juin 2015, par user3149172

    I want to stream video from my IP camera (using RTSP) and use FFmpeg. I found example which looks like :

    ffmpeg -i rtsp://MY-IP/0 -y  -c:v libx264 -b:v 448k -vprofile baseline -preset medium -x264opts level=41 -threads 4 -s 1920x1080 -map 0:v -map 0:a:0  -c:a libfaac -b:a 160000 -ac 2 -hls_time 10-hls_list_size 6 -hls_wrap 18 -start_number 1 stream.m3u8

    and the html page :

       
           <video height="531" width="945" autoplay="autoplay" controls="controls">
               <source src="stream.m3u8"></source>
           </video>
       

    But there are the problems with mapping. While running the ffmpeg I get error :
    Stream map ’0:a:0’ matches no streams.