
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (26)
-
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. -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 (6797)
-
rtpdec : fix issue with conversion from unsigned to signed
20 février 2015, par Gilles Chanteperdrixrtpdec : fix issue with conversion from unsigned to signed
When receiving an RTCP packet, the difference between the last RTCP
timestamp and the base timestamp may be negative. As these timestamps
are of the uint32_t type, the result becomes a large integer. Cast
the difference to int32_t to avoid this issue.The result of this issue is very large start times for RTSP
streams, and difficulty to restart correctly after a pause.Signed-off-by : Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
Signed-off-by : Martin Storsjö <martin@martin.st> -
id3v2 : catch avio_read errors in check_tag
11 mai 2015, par Andreas Cadhalpunid3v2 : catch avio_read errors in check_tag
Since len is an unsigned int, the comparison is currently treated as
unsigned and thus ignores all errors from avio_read.Thus cast len to int, which is unproblematic, because at that point len
is between 0 and 4.This fixes ’Conditional jump or move depends on uninitialised value’
valgrind warnings in is_tag.Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
ffserver webm streaming issue with Firefox browser
1er septembre 2015, par Venkatesh Babu DargahI’m attempting to cast my desktop screen to an ffserver and stream it as a webm. I’m using the following ffserver configuration :
HTTPPort 8091
MaxHTTPConnections 20000
MaxClients 10000
MaxBandwidth 10000CustomLog -
File /tmp/feed1.ffm
FileMaxSize 1G
ACL allow 127.0.0.1Format webm
Feed feed1.ffmVideo settings
VideoCodec libvpx
VideoFrameRate 30
VideoBitRate 512
VideoSize 320x240
MaxTime 0
AVOptionVideo me_range 16
AVOptionVideo qdiff 4
AVOptionVideo qmin 4
AVOptionVideo qmax 40
AVOptionVideo quality good
AVOptionVideo flags +global_headerStreaming settings
PreRoll 10
StartSendOnKeyAudio settings
AudioCodec libopus
AudioBitRate 128
AudioSampleRate 48000
AVOptionAudio flags +global_header
Metadata author "author"
Metadata copyright "copyright"
Metadata title "Web app name"
Metadata comment "comment"I am using ffmpgeg to capture video from my desktop using
ffmpeg -f v4l2 -s 320x240 -r 25 -i /dev/video0 -f alsa -ac 2 -i hw:0 http://localhost:8091/feed1.ffm/i am able to see this stream in chrome.
but Firefox is showing message as MIME type not supported and not able to decode.
but if I run the same webm video from static file it is playing in firefox
but if I try to access via http://localhost:8091/live1.webm i am getting MIME type error,
please let me know what additional settings need to be done in Firefox to play webm videos from my server address and port.
Again I am reiterating that this is playing ok in chrome but not in Firefox.Please reply.
hi all,
i am able to play in firefox also after i changed audiocodecs to libvorbis and removing AudioChannels parameter from ffserver config file.
thanks for your attention