
Recherche avancée
Médias (1)
-
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
Autres articles (91)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9809)
-
Trying to determine h.264 profile & level pragmatically
23 juin 2012, par kryptobs2000Ideally the solution would be in python and cross platform, but that's probably not too likely, so all I require is it work in linux, and I can use a c extension to interface w/python if necessary. I see there is a python binding for ffmpeg which I was thinking about using, however I can't figure out how to determine the profile and level as it is, with fmmpeg or anything else, much less do it pragmatically. Google is not much help on the matter either.
I've been able to determine what features I'd be looking for if I needed to determine the profile and levels manually then I can do that, but then that leads to the question, can ffmpeg then determine if the video was encoded with that feature set ? I guess what I'm wondering to that effect is, is it perhaps not possible to fully determine the level and specific profile after encoding ? I would think you'd have to know in order to decode it, but maybe not ; that would explain why I can't find any information on it. I've been toying with this on and off for awhile, but recently decided to consider a project I'd been thinking about, but this is one of this big things holding me back.
-
Invalid option error using avcodec_open2 and libopus
12 mai 2017, par Paul GregoireI’m getting an invalid option result from
avcodec_open2
in ffmpeg 3.1.6 with libopus 1.1.4. I’ve sorted through all the options and I cannot locate the offending option, I created a gist holding the relevant native code. I’ve searched all about the internet and cannot find anything helpful as of yet. I’ve also tried with and without the opts dictionary.results = avcodec_open2(context, codec, &opts);
andresults = avcodec_open2(context, codec, 0);
All tests and variations return -22 (at line 51 in gist)
-
How to extract frames from all videos in a folder using ffmpeg
11 mai 2023, par OlivierI'm currently able to extract images from a file using the following line



ffmpeg -i inputfile.avi -r 1 image-%d.jpeg




However, I want to apply this to all the files in a folder, and place it in an output folder.



Suppose I have the current folder holding all videos :



input-videos/



----subfolder1/



------video.avi



----subfolder2/



------video.avi



I want everything in the output folder :



output/



----subfolder1/



------video/



----------*.jpeg



----subfolder2/



------video/



----------*.jpeg



What is the simplest way to go about this using a bash script ? (or something else better)