
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (73)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (6919)
-
FFMPEG/libavfilter drawtext scaling without affecting video [duplicate]
23 avril 2019, par Captain JackThis question already has an answer here :
How can I scale drawtext without affecting the input video ?
Here’s my attempt - this filter is applied in C but is equivalent to -filter_complex in command line.
[in]drawtext=text='Test Text': fontcolor=white: fontsize=w/40: x=w/20: y=h*16/18:shadowx=1:shadowy=1,scale=iw/2:ih/3[out]
The above does scale text but it also affects video as it’s part of the drawtext input.
I tried things like :
nullsrc=s=iwxih[ns];
[ns]drawtext=text='Test Text': fontcolor=white: fontsize=w/40: x=w/20: y=h*16/18:shadowx=1:shadowy=1,scale=iw/2:ih/3[text];
[in][text]overlay=0:0[out]But it doesn’t seem to like
nullsrc
and it hangs... or I am doing something wrong.Any ideas ?
-
OpenCV Installation error in ubunt, stuck on compilation [duplicate]
11 novembre 2014, par Deepak Eevil PersonifiedThis question already has an answer here :
When I try to install opencv in ubuntu 9.1 Karmic Koala,I know it is a older version. I encounter with the following error while compiling(Using Make)
I have installed all the new versions of FFMPEG and other utilities, Still I am unable to install opencv
[ 19%] Built target pch_Generate_opencv_perf_core
Linking CXX executable ../../bin/opencv_perf_core
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `swr_free'
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `swr_init'
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `swr_is_initialized'
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `swr_close'
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `swr_convert'
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `swr_alloc'
../../lib/libopencv_highgui.so.2.4.9: undefined reference to `cvCreateCameraCapture_V4L(int)'
collect2: ld returned 1 exit status
make[2]: *** [bin/opencv_perf_core] Error 1
make[1]: *** [modules/core/CMakeFiles/opencv_perf_core.dir/all] Error 2
make: *** [all] Error 2If some body can help with this, it will be greatfull
Thanks in advance
-
IOException when I use Runtime for FFMPEG [duplicate]
20 octobre 2016, par KilobyteThis question already has an answer here :
I’m trying to write a java program that converts a video file (mp4) into an audio file (mp3) using FFMPEG, but I have an IOException.
Is there something wrong in my code ?import java.lang.Runtime;
public class Basketball {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Process p = Runtime.getRuntime().exec("ffmpeg highlightsCLGS.mp4 -vn -ab 256 highlightsOutput.mp3");
}
}And this is the error.
Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - unreported exception java.io.IOException; must be caught or declared to be thrown
at basketball.Basketball.main(Basketball.java:21)