
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (34)
-
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 (...) -
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) (...)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (7519)
-
cdgraphics : do not return 0 from the decode function
6 août 2014, par Anton Khirnov -
How to read remote video on Amazon S3 using ffmpeg
9 septembre 2024, par virtualizeI need to create poster frames from videos hosted on Amazon S3 via ffmpeg.



So is there a way to use the remote video file directly in ffmpeg command line like this :

ffmpeg -i "http://bucket.s3.amazonaws.com/video.mp4" -ss 00:00:10 -vframes 1 -f image2 "image%03d.jpg"



ffmpeg just returns :

http://bucket.s3.amazonaws.com/video.mp4: I/O error occurred<br />
Usually that means that input file is truncated and/or corrupted.



I also tried forcing ffmpeg to use the videos mp4 container for reading :

ffmpeg -f mp4 -i "http://bucket.s3.amazonaws.com/video.mp4" ...

But no luck.


Wget this video from S3 and processing it locally works fine of course,

as well as reading the file remotely from other 'standard' http servers.

So I know that ffmpeg supports remote file reading, but why not on S3 ?

-
How to read remote video on Amazon S3 using ffmpeg
19 septembre 2012, par virtualizeI need to create poster frames from videos hosted on Amazon S3 via ffmpeg.
So is there a way to use the remote video file directly in ffmpeg command line like this :
ffmpeg -i "http://bucket.s3.amazonaws.com/video.mp4" -ss 00:00:10 -vframes 1 -f image2 "image%03d.jpg"
ffmpeg just returns :
http://bucket.s3.amazonaws.com/video.mp4: I/O error occurred<br />
Usually that means that input file is truncated and/or corrupted.I also tried forcing ffmpeg to use the videos mp4 container for reading :
ffmpeg -f mp4 -i "http://bucket.s3.amazonaws.com/video.mp4" ...
But no luck.Wget this video from S3 and processing it locally works fine of course,
as well as reading the file remotely from other 'standard' http servers.
So I know that ffmpeg supports remote file reading, but why not on S3 ?