
Recherche avancée
Autres articles (77)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (6905)
-
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.