Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (29)

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

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

Sur d’autres sites (7258)

  • sws : replace all long with int.

    26 mai 2011, par Anton Khirnov

    sws : replace all long with int.

  • How to reduce execution time in long video using ffmpeg

    26 juin 2019, par vikram

    I am using ffmpeg for adding text over video and add overlay image over video in android everything works for me but it takes too long to execute command mostly in long video that more than or equals to 10 sec

    String  imgcmd[]=new String[]{"-i", inputpath ,"-i",imagepath ,"-filter_complex", "[0:v][1:v]overlay=main_w-overlay_w-10:main_h-overlay_h-10", "-codec:a", "copy",output};

                       String[] txtcmd = new String[]{"-i",""+inputpath, "-filter_complex", "drawtext=text=Vikram Dulagach:fontcolor=#000000:fontsize=54:x=533:y=503:fontfile="+"/sdcard/retro.ttf", "-y" ,""+output};

    I want reduce execution time in ffmpeg

  • ffmpeg - Live stream to web browser [on hold]

    21 octobre 2016, par Sreejith C M

    I was looking for a solution to stream my desktop live on my Windows system and found out ffmpeg is a good solution using dshow and everything is working fine and well. I’m using a C# wrapper for ffmpeg to record my desktop and I can save it in a local file.

    The problem I have is that, I have to watch the stream on my Web browser ( Chrome / Firefox ). I can’t use Media Server’s like wowza, red5 and also can’t use ffserver.

    I tried the ffmpeg wiki https://trac.ffmpeg.org/wiki and documentation but couldn’t figure out how to do this.

    Please help me to figure out this, how I can do this.