Recherche avancée

Médias (91)

Autres articles (42)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

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

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

Sur d’autres sites (7059)

  • arm : add missing macro instantiation for x264_pixel_avg_4x16_neon

    15 mars 2014, par Janne Grunau
    arm : add missing macro instantiation for x264_pixel_avg_4x16_neon
    

    checkasm —bench on a cortex-a9 :
    avg_4x16_c : 8910
    avg_4x16_neon : 2091

    • [DH] common/arm/mc-a.S
    • [DH] common/arm/mc-c.c
  • php_ffmpeg module not loading in Windows 7

    28 mars 2014, par Warwick

    PLEASE help me ! I have been searching for solutions for days !

    I am running Apache 2.2.22 and PHP 5.3.21 on Windows 7.

    I have extracted and copied php_ffmpeg.dll to C :\Program Files (x86)\PHP\ext ; copied avcodex-51.dll, avformat-51.dll, avutil-49.dll and pthreadGC2.dll to C :\Windows\System32 ; and added the extension=php_ffmpeg.dll directive to php.ini. However, the module is still not loading.

    I found the following error in the PHP error log :

    PHP Warning :  PHP Startup : Unable to load dynamic library 'C :\Program Files (x86)\PHP\ext\php_ffmpeg.dll' - The specified module could not be found.

    Any help would be dearly appreciated !

  • Best streaming way for images generated on the fly

    28 novembre 2018, par Vincent Bavaro

    Good morning,
    I have a server that sends me an increasing sequence of images and I need to stream them as a VOD to anyone that, after it inputs username and password in a simple HTML5 site, accesses them. I found ffmpeg to be the best solution so I’m studying it a lot these days. I wanted to know from experts in ffmpeg and streaming, what should be my main route to follow for my purposes.

    My personal thought and what I’m working on is to have ffmpeg encode the images on the fly to a video through a pipe, and then with another command have it transformed into segmented MPeg-4 and playlist for HLS stream, I think I will use an apache webserver for that as well. Is this the best course to follow ? Anyone has better/more efficient (like a single command)/more easy solutions to develop ?