
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (111)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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) (...)
Sur d’autres sites (11137)
-
HTML5 / and live transcoding with FFMPEG
8 mai 2014, par TooTallNateSo from my web server, I would like to use FFMPEG to transcode a media file for use with an HTML
<audio></audio>
or<video></video>
tag. Easy enough right ?The conversion would need to take place in real-time, when an HTTP client requested the converted file. Ideally the file would be streamed back to the HTTP client as it is being transcoded (and not afterwards at the end, since that would potentially take a while before any data starts being sent back).
This would be fine, except that in today’s browsers, an HTML5 audio or video tag requests the media file in multiple HTTP requests with the
Range
header. See this question for details.In that question linked above, you can see that Safari requests weird chunks of the file, including the ending few bytes. This poses a problem in that the web server WOULD have to wait for the conversion to finish, in order to deliver the final bytes of the file to conform to the
Range
request.So my question is, is my train of thought right ? Is there a better way to deliver transcoding content to an
<audio></audio>
or<video></video>
tag that wouldn’t involve waiting for the entire conversion to finish ? Thanks in advance ! -
HTML5 / and live transcoding with FFMPEG
13 mai 2020, par TooTallNateSo from my web server, I would like to use FFMPEG to transcode a media file for use with an HTML
<audio></audio>
or<video></video>
tag. Easy enough right ?


The conversion would need to take place in real-time, when an HTTP client requested the converted file. Ideally the file would be streamed back to the HTTP client as it is being transcoded (and not afterwards at the end, since that would potentially take a while before any data starts being sent back).



This would be fine, except that in today's browsers, an HTML5 audio or video tag requests the media file in multiple HTTP requests with the
Range
header. See this question for details.


In that question linked above, you can see that Safari requests weird chunks of the file, including the ending few bytes. This poses a problem in that the web server WOULD have to wait for the conversion to finish, in order to deliver the final bytes of the file to conform to the
Range
request.


So my question is, is my train of thought right ? Is there a better way to deliver transcoding content to an
<audio></audio>
or<video></video>
tag that wouldn't involve waiting for the entire conversion to finish ? Thanks in advance !

-
configure : allow the gas-preprocessor to be called with an absolute path.
16 avril 2013, par Lars Hammarstrandconfigure : allow the gas-preprocessor to be called with an absolute path.
Allow the configure tool to call the gas-preprocessor with an absolute
path when included with either the "—as" or with a separate "—gas"
option. The patch is backward compatible and will not break any current
configuration setups.The new behavior that comes with this option can be utilized in the
following ways :Examples :
Just as single option that includes both the gas-preprocessor.pl and
cc/as at the same time :$ configure —as="/opt/app/build-tools/gas-preprocessor.pl \
/Applications/Xcode.app/.../Developer/usr/bin/gcc"Call gas-preprocessor with a separate option in conjunction with —as :
$ configure —gas="/opt/app/build-tools/gas-preprocessor.pl" \
—as="/Applications/Xcode.app/.../Developer/usr/bin/gcc"Address only the the gas-preprocessor and it will automatically fall
back to as or cc whichever that’s defined :
$ configure —gas="/opt/app/build-tools/gas-preprocessor.pl"Or if no gas-preprocessor.pl is explicitly defined, it falls back to
the old behaivor.