
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (68)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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, parMediaSPIP 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, parDixit 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 user3833682I’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 butffmpeg
extension is not installing so I also checked it atphpinfo
to confirm its installed or not but not installed and I’vewindows 7 64
,wampserver 2.4
,apache 2.4.4
and php version is5.4.12
I don’t know what am I missing, I spent my 6 hours to figure out but extension offfmpeg
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. -
ffmpeg via shell_exec not working
25 février 2016, par user1661677I’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 AbdessamadI 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_0for 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.how i can solve this problem ?