
Recherche avancée
Médias (1)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
Autres articles (56)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...) -
Support audio et vidéo HTML5
10 avril 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 (...)
Sur d’autres sites (8710)
-
Bitrate variation in x264 encode ? [closed]
21 octobre 2012, par nightcrawlerUnder win732bit
The following picture is the analysis of bitrateviewer from 2 different encodings :
After learning a great deal I want to ask some basic questions- Are the jitters (huge variation of bitrate) in the encoded files
(relative to original .wmv) usual or they refer to poor results ? (I
used CBR this should have given me a nice smooth bitrate histogram ?) - Am I correct in setting level to 3.1 because this is enough to handle
the input resolution & bitrate ?
(http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Levels) - Would you recommend me for CBR(currently used at 23) or
2pass(2500kb/s) or ABR(2500kb/s) for this file ? (I assume that the
latter of the two will reduce jitters but increase filesize because
bitrate is kept constant even in those frames where its not needed or
willlnt produce influential results) - Provided that I want good result under 260mb what are the setting I
have to use ?
- Are the jitters (huge variation of bitrate) in the encoded files
-
FFMPEG HLS Livestream For High Frame Rates/Action Scenes
7 novembre 2020, par Devin DixonObsversation with my current ffmpeg hls livestream implementation. I am getting an HLS from a stream and is transcoding it for another stream as such :


/usr/bin/ffmpeg -y -i rtmp://127.0.0.1:1935/live/3fafa93b-d957-4360-9f9c-3ded474d57f9 -c:v copy -c:a copy -f tee -map 0:a? -map 0:v? [hls_time=1:hls_list_size=8:hls_flags=delete_segments]./media/live/3fafa93b-d957-4360-9f9c-3ded474d57f9/index.m3u8



It works great ! Accept with movie scenes with fast frame rates, namely action movies. How can I tweak my HLS livestream to better deal with scene that have high frame rates ?


-
ffmpeg cannot transform BGRA into png properly ?
29 mai 2013, par socketI get the BGRA raw data from /dev/fb0 ,and I wanna transform BGRA data into png,I use this command :
ffmpeg -f rawvideo -s 1280x800 -pix_fmt bgra -i a.bgra -vcodec png a.png
But the png picture is not clear.I tried the opposite way,transform a clear png file into BGRA :
ffmpeg -i car.png -f rawvideo -s 1280x800 -pix_fmt bgra a.bgra
And the bgra file still not clear.So in my opinion , the ffmpeg cannot deal with BGRA data properly.Am I right ? How to solve it ? Thanks a lot :-)