
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (58)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (15184)
-
avcodec/mpegaudio_parser : Discard ID3v1 tag at the end
24 juin 2015, par Michael Niedermayeravcodec/mpegaudio_parser : Discard ID3v1 tag at the end
Ideally this should be discarded by the demuxer but this is not
possible without fully parsing which would be then very similar
to this. The current ID3v1 discard code in the demuxer does not work
and will be removed in a subsequent commitThe discard code could be adjusted if needed to also discard tags at
other locations than the end or to limit this possibly to input
from the mp3 demuxer or even to move the discarding to the
decoder.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
-
libavcodec : fix -Wint-conversion in vulkan
20 décembre 2023, par Sam Jameslibavcodec : fix -Wint-conversion in vulkan
FIx warnings (soon to be errors in GCC 14, already so in Clang 15) :
```
src/libavcodec/vulkan_av1.c : In function ‘vk_av1_create_params’ :
src/libavcodec/vulkan_av1.c:183:43 : error : initialization of ‘long long unsigned int’ from ‘void *’ makes integer from pointer without a cast [-Wint-conversion]
183 | .videoSessionParametersTemplate = NULL,
| ^
src/libavcodec/vulkan_av1.c:183:43 : note : (near initialization for ‘(anonymous).videoSessionParametersTemplate’)
```Use Vulkan's VK_NULL_HANDLE instead of bare NULL.
Fix Trac ticket #10724.
Was reported downstream in Gentoo at https://bugs.gentoo.org/919067.
Signed-off-by : Sam James <sam@gentoo.org>