Recherche avancée

Médias (91)

Autres articles (68)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (4633)

  • copy step written on stackoverflow to install FFMPEG on wamp not working

    18 novembre 2016, par user3833682

    I’m working on project for converting youtube videos into mp3 format and found this also to install ffmpeg on wamp server Install FFMPEG on WAMP and try other links also but ffmpeg extension is not installing so I also checked it at phpinfo to confirm its installed or not but not installed and I’ve windows 7 64, wampserver 2.4, apache 2.4.4 and php version is 5.4.12 I don’t know what am I missing, I spent my 6 hours to figure out but extension of ffmpeg is not installed yet please tell me what am I doing wrong ?

    Now after that I’m getting popup message twice when I start wamp server `PHP Startup : Unable to load dynamic library

    c :/wamp/bin/php/php5.4.12/ext/php_ffmpeg.dll’ - %1 is not a valid
    Win32 application.

    enter image description here

  • ffmpeg via shell_exec not working

    25 février 2016, par user1661677

    I’m running the following command in the console without any problems :

    ffmpeg -i /var/www/html/input.mp4 /var/www/html/output.mp3

    But when I run the command in PHP, I get nothing :

    <?php
    shell_exec("ffmpeg -i /var/www/html/input.mp4 /var/www/html/output.mp3");
    ?>

    Any idea what the problem is here ? I’ve checked my CHMOD permissions, everything looks good. Anything else to check ?

    Thank you,

  • FFmpeg - Add water mark image to video or stream not working

    19 juillet 2018, par Abdessamad

    I want add a logo to video and stream with ffmpeg

    for video :

    ffmpeg –i viddeo.mp4 -i logo.png -filter_complex "overlay=main_w-overlay_w-10:main_h-overlay_h-10" bottom_left.mp4

    for stream :

    ffmpeg -re -i http://server.com/live.m3u8 -i logo.png -filter_complex "overlay=main_w-overlay_w-10:main_h-overlay_h-10" -c:v copy -c:a aac -ar 44100 -ab 128k -ac 2 -strict -2 -flags +global_header -bsf:a aac_adtstoasc -bufsize 1500k -f flv rtmp://test:1935/live/kky4zhl

    but it not working

    for video i get this error :

    Cannot find a matching stream for unlabeled input pad 1 on filter
    Parsed_overlay_0

    for stream i get this error :

    Streamcopy requested for output stream 0:0, which is fed from a
    complex filtergraph. Filtering and streamcopy cannot be used together.

    version used :
    enter image description here

    how i can solve this problem ?