
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (60)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (10445)
-
Ffmpeg , overlay two sequences of png's and turn them into a movie
12 mai 2014, par Lau Llobeti’ve found how to turn a png sequence into a movie, also i’ve found how to overlay two movies using transparency but I don’t know how to do both things at once (using png’s tranparency).
The bottom layer of png’s is smaller than the top one and needs to be stretched to a certain resolution and also have a padding to be centered.
The output dont have to have alpha (black for alpha is ok).
I’m a bit confused by the abundance of filter options
Edit :
for the moment i’ve found :
./ffmpeg -i ./seq1/%d.bmp -vf "movie=./%d.png [a]; [in][a] overlay=0:366" combined.m2v
it works , now i’ve got to find the padding and resize things
thank you in advance.
-
How can I fill skipped video frames of a movie with duplicated frames using ffmpeg ?
28 août 2017, par Aviv SharonI have an avi movie that contains some skipped frames (can be easily seen with virtual dub, that it duplicates them to the previous frame).
My question is how can I use ffmpeg tool to convert a movie to be the same, just to fill the skipped frames with the previous ones, without changing the compression, using the very same source frames.
I know there is a "-vsync cfr" option that works when re-encoding ("-vcodec [some codec]"), and there is "-vcodec copy", which maintains the codec and quality. However, these 2 ("-vsync cfr -vcodec copy") are not working together. In such case, the output video is the same as the input video (bit-exact).Any clue how can I do it ? Thanks
-
Append tracks in Movie using FFMPEG android
19 juin 2014, par Arslan AhmadI want to APPEND a 2 audio track and one video in to the Movie I am using FFMPEG library. It always pick second sound track instead of both. Any help ?
Movie result = new Movie();
if (audioTracksRecordAppend.size() > 0) {
result.addTrack(new AppendTrack(audioTracksRecordAppend
.toArray(new Track[audioTracksRecordAppend.size()])));
}
if (audioTracksRecord.size() > 0) {
result.addTrack(new AppendTrack(audioTracksRecord
.toArray(new Track[audioTracksRecord.size()])));
}
if (videoTracks.size() > 0) {
result.addTrack(new AppendTrack(videoTracks
.toArray(new Track[videoTracks.size()])));
}