
Recherche avancée
Autres articles (52)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (6134)
-
Chess game video generator
11 septembre 2017, par samara-casaI don’t have a specific technical question, I rather would like to hear advices on how to come around so the task will be implemented in the most elegant way.
Can’t think on a solution that will satisfy me in terms of "elegance".I would like to create automatic video generator of chess games.
You give it the moves in PGN format, maybe some configurable options as seconds between moves or audio track and it will eventually output a video file of the game.What is the correct way to get into it ? Is there software or tools that can help me with this ? What libraries to use ? Ideas ?
-
What is Qt's equivalent of SDL audio ?
7 août 2012, par SaptarshiThere is an old code that uses SDL audio to output music. I am porting it to Qt and I want to replace SDL audio with native Qt audio API.
The flow, in simplest terms, is this :
...
// Initialization
wanted_spec.callback = sdl_audio_callback;
SDL_OpenAudio(&wanted_spec, &spec);
...
// copies raw data to audio buffer
static void sdl_audio_callback(void *opaque, Uint8 *stream, int len)Which audio Api of Qt should I be using ? There is no video involved
-
FFMPEG : Creating a video, which has the maximun value per pixel of n-input videos
18 décembre 2016, par LighthouseZGZImagine a collection of short videos, each one showing a shooting star.
I would like to get a composite video of all shooting stars. Not in sequence, at the same time. The (x,y) pixel of the nth frame in the output video should have the maximum value for that (x,y) pixel of the same frame in all the videos.
I know how to do that using images and imagemagick :
magick *.bmp -evaluate-sequence max output.bmp
I need something similar for video. Frame by frame.
Any help would be appreciated. Thanks.