
Recherche avancée
Médias (1)
-
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 (43)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (13295)
-
Attach file to mp4 video with ffmpeg
9 mai 2017, par BirdI’m trying to attach or embed a kml file to a mp4 video ; or, I’m trying to find out if this is possible at all. Based on the wikipedia page on video containers, it looks like mp4 containers support file attachments, so theoretically it seems possible.
I’ve tried this command :
ffmpeg -i input.mp4 -attach site1.kml -metadata:s:t:0 mimetype=application/vnd.google-earth.kml+xml output.mp4
which returned :
Could not write header for output file #0 (incorrect codec parameters ?): Operation not permitted
If I change the output file to
output.mkv
it works (based on this question), but I’d really like to maintain the mp4 container.Edit : I’ve figured out a way to parse a kml file into a srt subtitles file and embed that in the mp4 container, then extract and recreate the kml all using Python. But, it would be much cleaner to just attach the kml.
Anyone know if this is possible ?
-
Heroku buildpack failure
2 mai 2015, par Max ZemskyI have a huge problem, I am trying to install FFMPEG on my nodejs server.
What i did :
heroku create --buildpack https://github.com/ddollar/heroku-buildpack-multi
or
heroku config:set BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi
or
heroku config:add BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi
-
I have created a
.buildpacks
(without extesion) file at my github repository. This is what it includes :https://github.com/jayzes/heroku-buildpack-ffmpeg
https://github.com/heroku/heroku-buildpack-nodej
Each time i am trying to push my changes to heroku, this is what i get :
-----> Fetching custom git buildpack... failed
! Push rejected, error fetching custom buildpackCurrently, i am trying to return to the default buildpack (i have removed the
.buildpacks
file from my git repository) using :
heroku config:unset BUILDPACK_URL
and i am still getting an error while pushing my git repository to the heroku. Any suggestions ? -
How to use ffmpeg make video opacity as 50% ?
8 septembre 2021, par Xiang ChenI had a video, I want to make it opacity low to certain percent.
I use the code below

ffmpeg -i 2.mp4 -vf colorlevels=rimin=0.058:gimin=0.058:bimin=0.058 output.mp4


but is not the effect I want, what I want is like :


- 

- video opacity change to 60%
- the video see to overlay to dark background






Here is the pictures to demonstrate the effect I want :