
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (65)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6547)
-
undefined reference error in using libx264 in another project
10 août 2014, par Hadi RasekhWhen I used the x264 DLL in another project, the "undefined reference error" is reported when making that project !
This is my (example_exe.cpp) code :
#include
#include
#include
#define X264_API_IMPORTS
#include "x264.h"
int main(void)
{
x264_param_t *t;
x264_encoder_open(t);
return 0;
}and This is how I compile and make my code :
g++ -c example_exe.cpp
g++ -o example_exe.exe example_exe.o -L. -llibx264-142and I got the following error :
example_exe.o:example_exe.cpp:(.text+0x22): undefined reference to `x264_encoder_open_142(x264_param_t*)`
-
avdevice/x11grab : fix cursor drawing in multi-screen setup
8 septembre 2014, par Antonio Ospiteavdevice/x11grab : fix cursor drawing in multi-screen setup
The code uses XFixes to retrieve the cursor coordinates, but XFixes
gives no information of what screen the pointer is on ; this results in
always drawing the cursor on the captured screen even if the mouse
pointer was on another screen.For example, when capturing from screen 1 (i.e. -f x11grab -i ":0.1")
the cursor was being drawn in the captured image even when the mouse
pointer was actually on screen 0, which is wrong and visually confusing.Use XQueryPointer to check that the pointer is actually on the screen
which is being captured.Signed-off-by : Antonio Ospite <ao2@ao2.it>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
How do to build and add ffmpeg in java project ? [on hold]
25 octobre 2016, par kumarI am working in RTSP video streaming in Java project.Now I need to play video in all browser along with different Operating system.I am having some troubles regarding FFMPEG library compliation. How do to add ffmpeg library to my java application ? Anyone please give idea.