
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 (24)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (7061)
-
Connecting Firebase to a Computer to Run Programs for It [closed]
29 mars 2020, par Rainbow Luv SheepCurrently I’m using Firebase to store video files sent by an app so that then ffmpeg can stitch them together and send a completed video back. However, ffmpeg will apparently sap up all of the allocated CPU usage of Firebase’s cloud functions since video files are large, and could possibly timeout. Because of that, I want to have Firebase sent a request to a computer that will download the video files, run ffmpeg to stitch them together, then upload that finished file back up to Firebase. App Engine and Compute Engine are out of scope due to cost .
Is there any way to do that ?
Sorry if I missed some obvious solution. I’m very new to working with servers in general.
-
FFMPEG Multiple Alpha Overlays
16 septembre 2018, par AK47I have a few videos with alpha channels that I will like to overlay on top of each other. It’s possible to get working with the following command
ffmpeg -i back.mov -i front.mov -filter_complex overlay -c:v png output.mov
However if I add another video to this it no longer works
ffmpeg -i back.mov -i front.mov -i front2.mov -filter_complex overlay -c:v png output.mov
Does anyone know a way of getting this to work ? or would I have to output the first 2 layers and then run the code again with a new layer ?
I will have more than 3 layers so looking for the most efficient way.
-
How to properly specify font file for ffmpeg as it's always defaulting to Arial ? [closed]
21 avril 2024, par Jim JansWhen calling ffmpeg it keeps defaulting to Arial-MT / Arial-BoldMT even when specifying a font. How do you correctly specify the fontfile ?


When specifying any font it will always default back :


[Parsed_subtitles_0 @ 000001915a83f800] fontselect: (DosisBold, 400, 0) -> ArialMT, 0, ArialMT


I am calling ffmpeg with the following command :


ffmpeg -i input.mp4 -vf subtitles='subtitle.srt':force_style='FontName=DosisBold,Alignment=10,Fontsize=24' output.mp4 -loglevel debug


I have a file called "DosisBold.ttf" in the same folder as ffmpeg. I have already tried FontName=DosisBold.ttf and it also doesn't work. All files are in the same folder as the ffmpeg.exe.


I have converted the .srt file to .ass and specified the font file but it still defaults back to ArialMT.


Format: Name, Fontname, Fontsize {...}
Style: SubStyle,DosisBold,24 {...}



I am using "ffmpeg-n7.0-latest-win64-gpl-7.0", I have tried different versions of ffmpeg (e.g. "ffmpeg-master-latest-win64-gpl") and still no change. Also tried different fonts / font files and it always defaults back to Arial.