
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (106)
-
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8852)
-
py2app compiled script with ffmpeg not working (mac)
18 avril 2020, par martijnlambadaI'm currently experiencing a lot of difficulties getting ffmpeg-python to work when compiling my script with Py2App. The attached script works fine when run from the command line, as does the terminal version found in the application bundle. When double clicking the app though, it just gives me a popup with (the not very descriptive) "Error". I've tried all possible solutions found in related posts including compiling the script with the "—emulate-shell-environment" flag. So far no luck. 
Details : Python 2.7.16 | macOs 10.14.6 | Latest version of ffmpeg & py2app.



Appreciate the help !



Thanks, martijn



import ffmpeg

stream = ffmpeg.input('input.mp4')
stream = ffmpeg.filter(stream,'scale', 800, 450)
stream = ffmpeg.output(stream, 'output2.mp4')
ffmpeg.run(stream)



-
ffmpeg list video devices with batch script to variables
5 août 2020, par ubulI use the
ffmpeg -stats -hide_banner -list_devices true -f dshow -i dummy
command to list all video and audio devices, and I need to get all Alternative name From "DirectShow video devices" (just video devices) with batch script.

I'm start with this : ffmpeg output parse in batch script (first answer)


Can someone more experienced to help me with this task ? Thanks in advance !


-
requesting script for compressing mp3 files recursively using ffmpeg
3 mai 2017, par Guddla RupeshHi I am Rupesh from India. I have a directory of size 65 GB which contains 2500 folders and 7000 mp3 files with 64 kbps bitrate.
I have installed Windows 8 and Linux with ffmpeg on my system.
I want to convert all these files to 16 kbps recursively I mean maintain folder structure of source. I have searched web for script and found some code but none of them provided what I want. I have searched even GUI frontend for ffmpeg and found some software but they don’t have option to convert all these files recursively and some don’t have option to convert to lower bitrate.
I have read ffmpeg manual pages and those was difficult to understand and even I don’t have scripting experience.
Can you create a script to perform the following steps
1) The script must compress files in each and every directory maintaining directory structure.
2) All files must be compressed to 16 kbps and 11500 samples per second with highest quality.
3) If any errors are encountered during the process the corresponding file information ie., file name with path must be stored in a seperate text file for future viewing.
4) After the process has been completed the system must shutdown.I want accurate compression. Please try to create a bash script ( linux ) or a batch script ( Windows ) and post the script.
Regards,
Rupesh.