
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (73)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (7157)
-
Revision c2876cf0fd : Initial addition of multiple ARF frames This is work-in-progress, it implements
3 avril 2013, par Adrian GrangeChanged Paths : Modify /configure Modify /vp8/encoder/onyx_if.c Modify /vp9/common/vp9_onyxc_int.h Modify /vp9/decoder/vp9_onyxd_if.c Modify /vp9/encoder/vp9_bitstream.c Modify /vp9/encoder/vp9_firstpass.c Modify /vp9/encoder/vp9_onyx_if.c (...)
-
ffmpeg - how does moving overlay / text command work ?
7 mars 2015, par StpnIn Ffmpeg you can create moving text :
ffmpeg -y -t 10 -s qcif -f rawvideo -pix_fmt rgb24 -s 1280x720 -i /dev/zero -g 1 -r 24 -vf drawtext="fontfile=~/fonts/Trebuchet_MS.ttf:text='thing crawls':fontsize=155:fontcolor=red:y=h-20*t" wow.mpg
So this will give me a black frame with "thing crawls" slowly going from bottom up..
If I know the length of the video (20 seconds) and want to, for example create "thing falls" that starts at the top of the screen at time 0 and goes to the bottom of the screen until 00:00:20, how do I do that ?
Also can I create the situation where the text will start going from top to bottom, but stop at the middle of the screen ?
-
Can somebody say why that doesn't work
6 août 2018, par atif sesuI want to convert webm to mp4.
private String ffmpegApp;
public FLVConverter(String ffmpegApp) {
this.ffmpegApp = ffmpegApp;
}
public void convert(String filenameIn, String filenameOut, int width, int height) throws IOException, InterruptedException {
convert(filenameIn, filenameOut, width, height, -1);
}
public int convert(String filenameIn, String filenameOut, int width, int height, int quality)
throws IOException, InterruptedException {
ProcessBuilder processBuilder;
if (quality > -1) {
processBuilder = new ProcessBuilder(ffmpegApp, "-i", filenameIn, "-ar", "44100",
"-s", width + "*" + height, "-qscale", quality + "", filenameOut);
} else {
processBuilder = new ProcessBuilder(ffmpegApp, "-i", filenameIn, "-ar", "44100",
"-s", width + "*" + height, filenameOut);
}
Process process = processBuilder.start();
InputStream stderr = process.getErrorStream();
InputStreamReader isr = new InputStreamReader(stderr);
BufferedReader br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null) ;
{
}
return process.waitFor();
}
public static void main(String[] args) throws Exception {
FLVConverter FLVConverter = new FLVConverter("C:\\Users\\Casper\\Desktop\\ffmpeg\\bin\\ffmpeg.exe");
FLVConverter.convert("C:\\Users\\Casper\\Desktop\\videoplayback.webm",
"C:\\Users\\Casper\\Desktop\\a.mp4", 300, 200, 5);
}