
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (90)
-
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 (9142)
-
fate/microsoft : add mss2 region test case
4 novembre 2022, par Peter Ross -
FFMPEG + SDL : How To Show Multi Frames In Separate Region ?
19 mai 2014, par user3051473I’m using ffmpeg and SDL to develop an camera monitor APP and I want to show four separate streams at the same time(via four rtsp source). As following figure out :
Now I achieve this by setting the SDL display region, and I identify different display region by using the different SDL_Rect identifying by the variable i(from 1 - 4).
But this cause the efficient problem. For every region, I need to scale to the whole screen and lock/unlock screen, then display.
I’m wondering that, Can I merge 4 different AVFrame(come from REG1 - REG4) into the whole picture and then show this picture ?
Hope that the describe about is detail enough for you to konw my problem.
Also thanks for your help.-------------------
- - -
- REG1 - REG2 -
- - -
-------------------
- - -
- REG3 - REG4 -
- - -
-------------------
public void ShowFrame(AVFrame *pFrame, AVCodecContext *pCodecContext)
{
SDL_LockYUVOverlay(pBmp);
AVPicture pict;
// TODO scale pFrame to pict
// ...
SDL_UnlockYUVOverlay(pBmp);
// WIDTH and HEIGHT represent the whole screen size
SDL_Rect rect;
rect.x = (WIDTH / 2) * (i % 2);
rect.y = (HEIGHT / 2) * (i > 1 ? 1: 0);
rect.w = WIDTH / 2;
rect.h = HEIGHT / 2;
SDL_DisplayYUVOverlay(pBmp, &rect);
} -
avcodec/mss2 : calculate draw region and revise split position
18 octobre 2022, par Peter Rossavcodec/mss2 : calculate draw region and revise split position
for videos with wmv9 rectangles, the region drawn by ff_mss12_decode_rect
may be less than the entire video area. the wmv9 rectangles are used to
calculate the ff_mss12_decode_rect draw region.Fixes tickets #3255 and #4043