Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (35)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5550)

  • Handling Unknown encoder with ffmpeg hardware acceleration

    23 septembre 2018, par Gabrielle

    I am having a heavy use of CPU from ffmpeg to record my screen.

    To solve this, I am trying to use hardware acceleration. The problem is that my program is intended to run in different platforms...

    I would like to know if there is a way to say "use any hardware acceleration available or none if none is available"...

    I tried to use -c:v h264_nvenc -allow-sw 1 in hope that, since I was testing on a Mac and I don’t have this encoding, the software encoding would be used instead, but this did not happened, instead, the entire command crashed.

  • ffmpeg "Automatic encoder selection failed for output stream"

    6 octobre 2018, par polmonroig

    I am trying to convert a video file from mp4 to exr but I am getting this error with this command in ffmpeg.

    Command

    ffmpeg -i 'video.MP4' 'video.%04d.exr'

    Error

    Automatic encoder selection failed for output stream #0:0. Default encoder for format image2 (codec exr) is probably disabled. Please choose an encoder manually.
       Error selecting an encoder for stream 0:0

    I hope someone can help me, I am really lost.

    Thank you !

  • How to install ffmpeg and convert videos to mp4 in PHP ?

    21 octobre 2018, par loot verge

    I downloaded the latest version of ffmpeg.exe. How can I use it in order to convert videos to mp4 using PHP script and Do I need to install the ffmpeg.exe in order for me to use it if so, how can I install it properly ? I am using the latest version XAMPP. I have seen many sites with tutorial but none of the have the proper information to install and use ffmpeg. I hope you guys can help me. I tried to copy the ffmpeg.exe in the folder of my site and tried the code below I am getting an error

    if(exec("ffmpeg.exe")){
       echo "ok";
    }
    else {
       echo "error";
    }