
Recherche avancée
Autres articles (111)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (8678)
-
FFmpeg for Windows Phone development
1er septembre 2013, par Akash LanghaniI have used FFmpeg in ASP.Net web-based applications. Now I want to use it for Windows Phone development.
Is it possible to use it ? If yes, then how ?
-
FFMPEG : Black background after scaled and cropped
30 septembre 2015, par kenickyI am using scale and crop for creating a new video. The problem is the
nullsrc
’s size is greater than the input, leaving a blinking green background. How can I change the blinking green background to black ?here is my code :
ffmpeg -y -i 1.mov -filter_complex "nullsrc=size=640x480 [base]; [0:v] setpts=PTS-STARTPTS, scale=320x480 [left]; [base][left] overlay=shortest=0:x=160" -c:v libx264 -t 5 output.mp4
-
Got black screen when recording screen by x11grab device
5 août 2019, par shawmzhuI’m trying to record video from a firefox run by
xvfb-run
but it always output nothing in the video file except black screen.Here’s what I did :
start a firefox, open google.com :
$ xvfb-run firefox https://google.com
Then it will use the default display server number 99. I can see the display information by command
xdpyinfo -display :99
.A screenshot works very well by command :
$ xwd -root -silent -display :99.0 | xwdtopnm |pnmtojpeg > screen.jpg
Start using ffmpeg to record a video :
$ ffmpeg -f x11grab -i :99.0 out.mpg
When I play the video file
out.mpg
, there’s black screen all the time.Is there any parameter I missed ?