
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (72)
-
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 (14984)
-
ffmpeg doesn't always create wave picture
17 février 2017, par Sean@LordNeckbeard and other ffmpeg experts,
can you please help me with generating wave picture. the following command works perfectly on some videos and it doesn’t on other videos :
ffmpeg -i "input.mp4" -filter_complex "[0:a]aformat = channel_layouts = mono, compand = gain = -6, showwavespic = s = 1920x384: colors =red|blue[fg]; color = s = 1920x384: color =#444444, drawgrid = width = 38:height = 38:color =#555555@0.5[bg]; [bg][fg]overlay = format = rgb, drawbox = x = (iw - w) / 2:y = (ih - h) / 2:w = iw:h = 2:color =#000000@0.4" -vframes 1 "output.png"
when working, it generates the following wave pic :
working exampleon other videos, it shows the grid but it seems that the wave signal is hidden behind the grid
Your help is greatly appreciated !
Thank you,
Sean. -
ffmpeg : Considers AVPixelFormat as Int ?
16 mars 2014, par jamie_yI would like to use a function
ff_load_image
.program.c
#include "../ffmpeg/libavfilter/lavfutils.h"
int main ()
{
uint8_t* data;
int linesize, width, height, log_ctx;
int i = ff_load_image(&data, &linesize, &width, &height, AV_PIX_FMT_RGB24, "blue.jpg", &log_ctx);
}This compiles, but gives a warning.
program.c: In function 'main':
program.c:11: warning: passing argument 5 of 'ff_load_image' makes pointer from integer without a cast
../ffmpeg/libavfilter/lavfutils.h:39: note: expected 'enum AVPixelFormat *' but argument is of type 'int'When I run the program, it segment faults. I can't think of any other way to specify a pixel format. Why would ffmpeg think
AV_PIX_FMT_RGB8
is an integer ? It's obviously anAVPixelFormat
. -
ffmpeg is dropping frames of second video in concat
17 juin 2018, par bugwheels94I did a screen share and when sharing the screen I minimized the sharing window so the video that I am sharing has some thing weird going on. Seeking does not work on mplayer but works on VLC. However, when doing the concat
ffmpeg -i test.webm -f lavfi -i color=c=blue:s=1366x768:d=71 \
-filter_complex "[0]scale=w='min(1366\, iw)':h='min(768\, ih)':force_original_aspect_ratio=decrease,\
pad=width=1366:height=768:x=(ow-iw)/2:y=(oh-ih)/2,setsar=1/1[v1];\
[1][v1]concat=n=2[v]" -map [v] -qscale 7 result.mp4The webm video of length 155 seconds is not showing complete. Ideally the result should be 71 + 156 = 227 but I am getting 155 seconds and the webm video of concat being cropped.
If I reverse the concat order to
[v1][1]concat=n=2[v]
then everything is perfect at 227 secondsDownload test.webm
May you please tell me about what might be wrong here ? Thanks