
Advanced search
Medias (1)
-
Revolution of Open-source and film making towards open film making
6 October 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (34)
-
Support audio et vidéo HTML5
10 April 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 (...) -
Taille des images et des logos définissables
9 February 2011, byDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Gestion de la ferme
2 March 2010, byLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
On other websites (5717)
-
FFProbe not sending custom Headers
3 February 2017, by Aiden901223I am trying to use FFprobe with a custom header that enables me to access the multimedia information such as frame-rate, bit-rates and etc of an URL. Custom Headers (-headers) were set based on the ffmpeg documentation and tutorials examples.
Command snippet:
ffprobe -headers $'X-CloudFront-Secret: A-VALID-TOKEN' -v error -show_format -show_streams -print_format json -i "URL"
It returns a 403 Forbidden message.
cURL-ing the URL with the custom header yields a 200 Response.
Am I setting the ffprobe custom header right?
Thank you!
-
using ffmpeg -f ffmetadata to get metadata for a stream [on hold]
23 April 2014, by user645402I have a stream that I can get the metadata for using ffmpeg:
ffmpeg -i <stream url="url"> -f ffmetadata -
</stream>This works great for the first song, but then returns. The issue is that the stream is from a radio station which plays song after song - i.e. the metadata is changing as time goes on. However, this command will only give metadata for the song currently playing and then exit.
I would like it to keep flowing the metadata as it updates in the stream.
-
why doesn't avformat_find_stream_info return with mp3 files
18 April 2014, by user1379811I have built and am using the latest build of lame, x264 and ffmpeg in my c++ project.
If I call avformat_find_stream_info with an mp3 file it doesn't return but if I use a .mp4 file instead avformat_find_stream_info returns fine.
I have tried different mp3 files and all give the same problem. They all seem to start with id3 if that has any effect?
I can't read more than 1 frame of data from the mp3 file with avformat_find_stream_info commented out so I'm thinking it's important.
Can anyone offer a reason for avformat_find_stream_info not returning? There seemed to be a patch for an endless loop but it seems thats already in utils.c.
I have also tried to read and decode the mp3 files directly using fread but then I get a mp3 missing header error.
Thanks.