
Recherche avancée
Autres articles (102)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...)
Sur d’autres sites (4760)
-
Using ffmpeg with subprocess python
23 décembre 2018, par VincentI am trying to download videos from Wistia and I managed to download them but in .bin& format ; I’d like to convert them to .mp4 in order to use OpenCV. For this I am calling ffmpeg with subprocess on Python but I get 1 as the value for the return code, meaning the process has failed. Any idea why, and how I can change this...?
Code is the following :
import subprocess
infile = filename #a bin&amp file
outfile = filename[:-7]+'mp4'
subprocess.run(['ffmpeg', '-i', infile, outfile],shell=True)I get :
CompletedProcess(args=['ffmpeg', '-i', '58c63bccfcc1c150646c261caad97a58ced4b5e3.bin&amp', '58c63bccfcc1c150646c261caad97a58ced4b5e3.mp4'], returncode=1)
Also, it works in the command prompt...
Thank you for your help,
Sincerely,
-
Remove 50 seconds every minute with FFMPEG [duplicate]
2 août 2020, par Mathias NervikI have a video that is about 5 minutes, and I want to remove 50 seconds every minute. Meaning that the end video should play normally for the first 10 seconds, then skip 50 seconds and play the first 10 seconds from the second minute, then skip 50 seconds...


-
How to extract all audio start and end time from a video file using ffmpeg
29 avril 2020, par user3699262I need to know from a video file, how do I extract all audio timestamp meaning start time and end time of each dialog. Having tried with multiple ffmpeg or ffprobe commands but not getting the desire result.



My desire result would be like,



'text' : "Hello Robert ! How are you", 'start' : 0.15, 'end' : 1.00
'text' : "Hey, I'm fine. What's about you ?", 'start' : 1.35, 'end' : 2.05
.
.