
Recherche avancée
Autres articles (31)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (3861)
-
Install FFMPEG on WAMP
1er décembre 2014, par nico55555I’ve probably spent over 12 hours trying to install FFMPEG on WAMP. I’m aware that other people have had this question answered on this site, however it does not work for my setup.
I have tried the below :
Download ffmpeg_new
Copy php_ffmpeg.dll from the php5 folder to the C:\wamp\bin\php\php5.2.9-2\ext
Copy files from common to the windows/system32 folder
Add extension=php_ffmpeg.dll to php.ini file
Restarted all services (Apache, PHP...)My current setup is PHP 5.2.1, Apache 2.0.63. I have a Windows 7 64bit computer.
I get the following error in my PHP error log :
[22-Jun-2012 01:39:31] PHP Warning : PHP Startup : Unable to load dynamic library ’c :/wamp/bin/php/php5.2.1/ext/php_ffmpeg.dll’ - The specified module could not be found.
in Unknown on line 0Obviously I have placed the module in the ext folder.
Phpinfo.php verifies that the FFMPEG module is not being loaded. I have tried installing PHP 5.3 (with a later FFMPEG version), 5.2.6 and 5.2.9-2, but the module still fails to load. Is there anything else I should try ? Does having a 64bit Windows 7 computer make any difference ?
-
nginx video mp4 streaming - jwplayer seeking
18 juin 2012, par abrahabAs you can see nginx streaming solution works and return different content-length when
flv
requested withstart
parameter :
http://www.hotgirlscompany.com/1.flv?start=0
http://www.hotgirlscompany.com/1.flv?start=300000But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request
?start=0
and then ignore any mouse clicks at loading line, and can not go to position I want).Of course, I added
provider=http
toflashVars
.
You can download the video and see that its converted as H.264/AAC. Then makedmp4box -inter 500 1.flv
. But still can not steam it :(Any suggestions ?
Maybe example how to property reconvert this video with ffmpeg to make it playable ? -
Thumbnail from Video VLC VS FFMPEG
28 août 2013, par Flood GravemindI am uploading videos to SQL SERVER SQL database using MVC. So far I can programmatically download unprocessed videos to my Computer process them eg convert to desired format/generate thumbnails/ etc etc and reupload the videos. I am using
VLC Command Line
[I know this might get me thumbs down but hey it works.] and a custom program. I read a lot about FFMPEG but most examples are inPHP
and I am yet to come across any MVC example. I am thinking of transitioning toFFMPEG
but want to ask people if the right place forFFMPEG
is on the SERVER or on a PC ? And can you point me to any examples/tutorials ofFFMPEG
inMVC/ASP
.