
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (60)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7354)
-
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)


-
How to extract frames from all videos in a folder using ffmpeg
28 janvier 2015, par OlihoopsI’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)