
Recherche avancée
Autres articles (77)
-
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 (...) -
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 (...)
Sur d’autres sites (6330)
-
Can't get FFMpeg to work with php
15 octobre 2017, par casusbelliI’ve installed FFMpeg using composer on my Ubuntu LAMP 16.04 however I fail to make it work.
I’m trying this simple code which make an instance of FFMpeg :
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open('video101.MOV');However I get this error :
Fatal error: Uncaught Error: Class 'FFMpeg\FFMpeg' not found in /var/www/html/upload/test.php:10 Stack trace: #0 {main} thrown in /var/www/html/upload/test.php on line 10
I tried to manually include the composer autoload.php with :
require_once 'vendor/autoload.php';
However I get this error :
Warning: require_once(vendor/autoload.php): failed to open stream: No such file or directory in /var/www/html/upload/test.php on line 6
I found out that is because composer vendor is at
root
of apache.any help ?
-
why transparent drawbox does not work on some video sources ?
28 mai 2019, par WangIt works on smptebars, smptehdbars, testsrc and testsrc2 but not other sources.
ffplay -loglevel trace -f lavfi -i testsrc=r=1:d=1:size=800x600 -vf "drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"
When I try this I can see the transparent box. But if I use color, and rgbtestsrc sources it does not work.
ffplay -loglevel trace -f lavfi -i rgbtestsrc=r=1:d=1:size=800x600 -vf "drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"
ffplay -loglevel trace -f lavfi -i color=c=red:r=1:d=1:size=800x600 -vf "drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"after looking at the trace output, it seems the transparency only works on rgb24 and yuv formats (yuv444p, yuv420p, etc.), this is surprising since we normally assume the rgba source can work with alpha channel.
The following command change the pix_fmt to rgb24, then it works :
ffplay -loglevel trace -f lavfi -i rgbtestsrc=r=1:d=1:size=800x600 -vf "format=pix_fmts=rgb24,drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"
The following command change the pix_fmt to rgba, then it does not work :
ffplay -loglevel trace -f lavfi -i rgbtestsrc=r=1:d=1:size=800x600 -vf "format=pix_fmts=rgba,drawbox=x=0:y=0:w='iw/2':h='ih/2':t=max:c=white@0.5"
Why is that ? and how can I fix this ?
-
Revision 30d8ba541e : multi-res : work around reference mismatch In some situations, believed to be an
8 octobre 2012, par John KoleszarChanged Paths : Modify /vp8/encoder/pickinter.c multi-res : work around reference mismatch In some situations, believed to be an interaction between temporal scalability and dropped frames, the references available to an encoder may not be the same references available to its parent. Previously, (...)