
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (75)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (5688)
-
how can i stack videos which have different durations ?
16 novembre 2018, par user2707690I made a ffmpeg filter graph using hstack to merge two videos. The two videos have different durations. One has 1:30 and the other has 8:48 length.
I had expected the output video has 8:48, but the result was 2:14. Is this hstack filter spec ?
And is there any other solution ?
command line is here. (these webms have only video streams)
ffmpeg -i vonly_short.webm -i vonly_long.webm -filter_complex "[0:v]scale=-1:270, pad=480:270:-1:-1[v0];[1:v]scale=-1:270, pad=480:270:-1:-1[v1]; [v0][v1]hstack=2:0[outv]" -map [outv] -c:v vp8 out.webm
-
Android - concatenate two videos
4 décembre 2016, par Marc Plano-LesayI’m trying to concatenate two videos on Android. I’m already using ffmpeg for other needs, but I’m using halfninja’s one, which is only 0.9. The 0.9 one doesn’t allow the following ways to do it :
// filter_complex isn't recognized
vk.run(new String[] {
"ffmpeg",
"-i",
inputFile1,
"-i",
inputFile2,
"-filter_complex",
"'[0:1] [0:0] [1:1] [1:0] concat=n=2:v=1:a=1 [v] [a]'",
"-map",
"'[v]'",
"-map",
"'[a]'",
outputFile
});
// Or, after converting the two videos to ts, trying to merge them: concat:file1.ts|file2.ts: No such file or directory
vk.run(new String[] {
"ffmpeg",
"-i",
"'concat:" + ts1 + "|" + ts2 + "'",
"-vcodec",
"copy",
"-acodec",
"copy",
"-absf",
"aac_adtstoasc",
output
});The third thing I tried is to use the concat demuxer explained here, which isn’t recognized with ffmpeg 0.9 either.
Is there any way to concatenate two videos on Android with ffmpeg 0.9 (or another library) ?
-
Combining sampled videos from multiple sources using ffmpeg
4 juin 2016, par Mrunal GawadeIf I have two videos shooting the same subject but from different angles, and then I want to create a single video, but the combination is not just concatenation but a time lined sample linearly from each of the video to create the same time line output video. Is it possible ?
For e.g. if both videos were shot for 1 minute each. then when I combine I want to combine 0-15 secs from 1st then 15-30 secs from second, then 30-45 from 1st, then 45-60 from second video. to create a 1 minute video.
Also as a generic case if above is possible, the time sample need not be uniformly distributed but random from each videos, as long as the total clips add upto original shoot time.
As a more generic case if above is possible, extending it to more than two video sources, lets say 3 videos combined in the above manner in a random time clips to create a single video.
many thanks
Mrunal