
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (54)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (10043)
-
Convert s3 video files resolution and store it back to s3
5 avril 2019, par Pritam RoyI want to convert s3 bucket video file resolutions to other resolutions and store it back to s3.
I know we can use ffmpeg locally to change the resolution.
Can we use ffmpeg to convert s3 files and store it back using Django ?I am puzzled as from where to start and what should be the process.
Whether I should have the video file from s3 bucket in buffer and then convert it using ffmpeg and then upload it back to s3.
Or is there anyway to do it directly without having to keep it in buffer. -
play video back & forth using FFMPEG [on hold]
19 avril 2018, par Mansi joshiHow to loop a video back and forth with ffmpeg android. i did not found any command of ffmpeg for back & forth loop.
-
Burn in delayed subtitles
11 février 2017, par sygiI would like to burn subtitles into a video file using a console program. Previously I used
ffmpeg
to do that :ffmpeg -i input.mkv -vf subtitles=sub.srt -strict -2 out.mp4
However, I am having problems when my subtitles are delayed with regard to the movie. I looked into
-ioffset
option andsetpts
filter, but they allow me move the video, but I’d like the video timing to stay unchanged and only burn in the subtitles in a delayed manner.Is there a way to do it in
ffmpeg
(I suppose no, as burning subtitles is a filter and I don’t see a way to "change" a behavior of filters, but I haven’t looked at all of them) ? If not, is there an easy-to-use console program which would delay the subtitles before burning them in ?