
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (20)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (5901)
-
Heroku and ffmpeg [closed]
29 octobre 2020, par CohenI am having trouble getting heroku to work with ffmpeg, I get an opus not loaded error even when I have loaded opus on heroku and in requirements. Music works completely fine on my own pc but won't on online host


-
Flash / FFMPEG / Linux Video Broadcasting [closed]
4 avril 2013, par Grant AdkinsI'm looking for a way to have a "virtual" online tv network.. kinda like shoutcast radio with auto dj where I can set the programing lineup or just randomize from files on the server and maybe the possibility of having live streams as well.. all to be streaming 24/7 on a website hopefully with a flash or dependable player..
I've kinda looked into nullsoft video
but does anyone else know a solution that might help ? -
subprocess.CalledProcessError command returned non zero exit status 1 even though the command works in the CMD
11 janvier 2024, par Lucas Soreauin Python, I want the duration of a video file without the FFmpeg Python library. This is the problematic line :


output = subprocess.check_output(['ffprobe', '-i', path, '-show_entries', 'format=duration', '-v', 'quiet'], universal_newlines=True)



And it gives this error :


subprocess.CalledProcessError: Command '['ffprobe', '-i', '"C:\\FFmpeg\\Encodes\\Forza Horizon 5\\FH5 AV1.mp4"', '-show_entries', 'format=duration', '-v', 'quiet']' returned non-zero exit status 1.



But the most important, and what I don't understand, is that, in the CMD, when I input
ffprobe -i "C:\FFmpeg\Encodes\Forza Horizon 5\FH5 AV1.mp4" -show_entries format=duration -v quiet
, I'm getting :

[FORMAT]
duration=101.480000
[/FORMAT]



In the Python file, the [FORMAT] tags will be removed so that I only have the duration, so there is no error. What's wrong with it ?


By the way,
raise RuntimeError("command '{}' return with error (code {}): {}".format(e.cmd, e.returncode, e.output))
doesn't return anything

I've tried removing unncessary things such as
universal_newlines=True
, and tried to search for it online, but what I found online doesn't include the fact that when I run it in the CMD, it works