
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 (36)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 (...)
Sur d’autres sites (6809)
-
Leading Google Analytics alternative, Matomo, parodies Christopher Nolan blockbuster ahead of the UA sunset
4 juillet 2023, par Erin — Press Releases -
Android Studio FFMPEG "Protocol not found"
26 novembre 2022, par Whitestripe7773I am trying to run ffmpeg with android studio, but when I try the following code it shows this error message :


E/mobile-ffmpeg : content ://media/external/video/media/68 : Protocol not found
E/mobile-ffmpeg : Did you mean file:content ://media/external/video/media/68 ?


This is my code :


inputVideo = "content://media/external/video/media/68"
videoTitle = "abc"
public void method(String inputVideo, String videoTitle) {
 String cmdLine = "-i " + inputVideo + " -vcodec libx265 -crf 28 file:" + videoTitle;
 FFmpeg.execute(cmdLine);
 }



I think that the 'content :' in inputVideo leads to the error but I don't know how I could fix it.
Already tried out the following :


- 

- Add 'file :' in front of inputVideo and videoTitle
- Removing 'content ://' from the string leads to not finding the file






-
Is it possible to change a google cloud function from Ubuntu 22 (default image) to Ubuntu 18 ?
19 octobre 2023, par Asher AI created a google cloud function via the Firebase CLI. I wasn't initially aware of which runtime environment the function (2nd generation) I created would be running on, however, I noticed that it didn't have
ffmpeg
installed so I tried looking for the actual runtime env. I then encountered this : https://cloud.google.com/functions/docs/reference/system-packages#requesting_a_package and through additional searches understood that the default base image is now ubuntu 22 which doesn't haveffmpeg
-> so I tried checking if I could switch back to Ubuntu 18 (I haven't figured out how, or if it's possible at all). Is it possible to switch images or at least installing ffmpeg in the runtime I'm using ?