
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (67)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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 (10653)
-
colored TV-Noise with windows
8 janvier 2024, par LookAndSeeI have some question to the colored noise at image 2 of the following thread :




- 

- how can i get this in windows ? I like a random pattern consisting of red, green, blue, white and black points, like 255:0:0, 0:255:0, 0:0:255, 255:255:0, 0:0:0 and 255:255:255 - no pink, no orange, no cyan ... at the first step.




but random in all 3 places always delievers (with ceil, floor or round) whole black, or whole white or bw-noise :-(
does it mean, the random(1) per point is 3 times the same in one computing-cycle ?


Any suggestion ?


This is what i tried :


ffmpeg -y -f lavfi -i nullsrc=s=1280x720 -filter_complex "geq=r=(round(random(1)))*255:g=(round(random(1)))*255:b=(round(random(1)))*255;aevalsrc=-2+random(0)" -t 5 output.mkv



-
where is the source code for av_codec_set_pkt_timebase in ffmpeg repo
9 octobre 2014, par LewisouI am using libavformat to mux AVI files.
When I look into the ffmpeg source code, I cannot find the function definition for av_codec_set_pkt_timebase while I can only find the function declaration in avcodec.h
I am using git revision : bfdf0f078a7463e1f304ef6fea3b25518cc45c3b
Who can tell where is the function definition for av_codec_set_pkt_timebase ?
Best regards,
Lewis -
how to assign the video level to struct AVCodecContext in ffmpeg ?
14 juin 2019, par LichardI am writting a C++ video encode API with ffmpeg.The video level is one important param, but I don’t known how to assign it to AVCodecContext.
I read the ffmpeg document and find out that "level" is int type,below is the definition at line 3014 of file avcodec.h.
/**
3010 * level
3011 * - encoding: Set by user.
3012 * - decoding: Set by libavcodec.
3013 */
3014 int level;
3015 #define FF_LEVEL_UNKNOWN -99according to my google search, the value of level is from 1.1(1.2,1.3,2...) to 5.2, obviously it is not an int type. I think level should be an enum type,but I can’t find any definition about it.
I have see some usage in internet, such as :
AVCodecContect *pCtx;
pCtx->level = 3;
....//or
pCtx->level = 50;but I think these usages are wrong..
I think the correct way to assign is somehow like this :pCtx->level = FF_LEVEL_UNKNOWN;
so I wonder if there is some relevant enum type definition about level and how to location it.