
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (104)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7424)
-
C# documentation about how to add an event handler [duplicate]
14 décembre 2017, par DevFranz_TechThis question already has an answer here :
I am coding a video converter using NRECO and ffmpeg everything works but when it comes at to get the Progress time
i’ve triedpgbConversion.Value = FFMpegConverter.ConvertProgress();
but it is impossible so i got !
**
**ConvertProgress is an even ; please check C# documentation about how to add an even handler.****from NReco
please how can i get the video progress knowing that ConvertProgrss is an event -
The encoder 'aac' is experimental but experimental codecs are not enabled [duplicate]
7 février 2016, par user3273412This question already has an answer here :
My
ffmpeg
is showing this in the logs when I try to convert a video :$ ffmpeg -i input.flv output.mp4
...
[aac @ 0xf50860] The encoder 'aac' is experimental but experimental codecs
are not enabled, add '-strict -2' if you want to use it.Anyone help me solve this issue please ?
-
Get total duration of multiple video files ? [duplicate]
16 novembre 2018, par Soyal7This question already has an answer here :
I want to extract video duration metadata from every video file in a specified directory and then sum all and view the total time in desktop app.
I need to extract data from as much as hundreds of videos overall. In Windows I can view the total duration for many files manually when selecting them in the explorer and going into details. For 1500 mp4 files it takes about 20 seconds to make the calculations and view the total time. It’s much faster then what I’m currently getting when iterating with
FFprobe
.for filename in dirFiles:
print(subprocess.check_output(['ffprobe', '-i', filename, '-show_entries','format=duration', '-sexagesimal' ,'-v', 'quiet', '-of', 'csv=%s' % ("p=0")]))What is the faster way to do this ?