Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (90)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (11040)

  • ffmpeg-php module fails in linux

    26 juillet 2017, par Swati

    I’ve been trying this for a couple of days now. I am trying to install ffmpeg-php on my CentOS server.

    OS : CentOS 6
    PHP : 5.5
    ffmpeg : 1.2.1
    ffmpeg-php : 0.6.0
    The ffmpeg installation went on without a hitch and I am able to convert files back and forth via the CLI.

    While installing ffmpeg-php, I encountered errors while making (after configuring) due to time.h references which was corrected by renaming the files creating with an extension .loT to .lo (as rightly pointed out here)

    Once this was done, the make process went on smoothly and the make install went through without a hitch. However, after specifying the extension=ffmpeg.so in the php.ini file and after restarting Apache, the module doesn’t load or show up in phpinfo().

    The Apache error log shows only "PHP Warning : PHP Startup : Invalid library (maybe not a PHP library) ’ffmpeg.so’ in Unknown on line 0" and nothing else.

    make test also shows the same error and FAILS the associated tests. I’ve checked here which wasn’t very helpful. Also, I read somewhere that it may be the issue with permissions but the permissions for the ffmpeg.so file is 755.

    Any help is appreciated.

    Thanks in advance.

  • avconv : stop accessing AVStream.parser

    28 octobre 2013, par Anton Khirnov
    avconv : stop accessing AVStream.parser
    

    It is private and must not be touched from outside of lavf.

    • [DBH] avconv.c
    • [DBH] avconv.h
  • Audio is shifted 50ms after combining it with video using ffmpeg / avconv

    10 janvier 2018, par LLL

    I have wav file in which sound starts exactly at 00:00:00 (checked with sonic-visualiser).
    I also have mp4 file without audio and when I combine them with :

    ffmpeg -i videoOnly.mp4 -i audio.wav -c:v copy -c:a aac -strict experimental out.mp4

    And then examine wav file generated from combined file :

    ffmpeg -i out.mp4 out.wav

    I see 50ms of silence before actual sound starts. The videoOnly.mp4 doesn’t have ’edts’ atom, so it’s not related to ’elst’ atom.

    The question is why audio is shifted and how to avoid that ?