
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (101)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11516)
-
create video with fluctuated background color and drawbox with fluctuated color ?
27 mai 2019, par WangIs there anyway to create a video with fluctuated background color choosing from a list for example
[R, G, B]
the background color along time will be R,G,B,R,G,B .... I might use nullsrc with geq. But seems the geq is quite slow which apply to each pixel.I would also like to change the color of drawbox too, is there any easy way to do it ? I knew we might be able to use openclsrc but it seems overkill for this simple task.
Update, for drawbox I found a way, which is kind of abuse the timeline editing :
ffmpeg -f lavfi -i smptebars=r=30:d=30:size=800x600 -vf "drawbox=enable='eq(mod(n,3),0)':x=0:y=0:t=20:c=red,drawbox=enable='eq(mod(n,3),1)':x=0:y=0:t=20:c=green,drawbox=enable='eq(mod(n,3),2)':x=0:y=0:t=20:c=blue" /tmp/test_box.mp4
-
Merging RGB Channels in FFMPEG [migrated]
14 octobre 2016, par DraconisI have three grayscale videos, representing the red, green, and blue channels from a video. I extracted them using the
extractplanes
filter, and sent them through different pipelines.Now I would like to combine them again. But while
extractplanes
is working perfectly,mergeplanes
is not. My initial attempt was this :[r][g][b] mergeplanes=0x001020 [output]
This interprets my RGB channels as YUV, which is not what I want. My next attempt was this :
[r][g][b] mergeplanes=0x001020:rgb24 [output]
But according to the error message,
Only planar formats with more than one component are supported.
(Same for all other RGB and RGBA pixel formats I tried.)Is there another way to put these channels back together ? Or some way to convince
mergeplanes
to output RGB ? -
PHP FFmpeg metadata usage
28 novembre 2013, par user2976292shell_exec("d:/wamp/ffmpg/ffmpeg -metadata title="Movie Title" -metadata year="2010" -i $vaw -b:v 64k -bufsize 64k $mp3");
i need add meta data to new output file with utf8 chars in installed windows localhost.
How can i add metadata txt have you any examples for metadata.txt ?