
Recherche avancée
Autres articles (64)
-
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 -
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.
Sur d’autres sites (4274)
-
FFServer Timeshift Tee Muxer Output
9 septembre 2017, par AaronWhen feeding into ffserver from ffmpeg using the tee muxer, clients connecting with the
?date=HH:MM:SS
option aren’t being properly timeshifted, they just get the live stream. My best guess is that timestamps aren’t being applied correctly to the incoming feed.Here’s the ffmpeg command I’m using with the tee muxer :
$ ffmpeg -v 32 -threads 1 -f mpegts -analyzeduration 2000000 \
-i "http://192.168.1.175:5004/auto/v4.1?duration=600" \
-flags +global_header -f tee -map 0:v -map 0:a \
-c:a aac -c:v h264 -preset veryfast \
-b:v 3000k -bufsize 24000k -minrate 2400k -maxrate 3000k \
"[select=\'v:0,a:0:1\']/Users/aaron/Movies/test.mp4|[select=\'v:0,a:0\']http://localhost:1234/feed.ffm"Here’s the contents of my ffserver configuration :
HTTPPort 1234
HTTPBindAddress 0.0.0.0
MaxClients 5
CustomLog ffserver.log
MaxBandwidth 50000
<feed>
File feed.ffm
FileMaxSize 16384M
ACL allow localhost
</feed>
<stream>
Feed feed.ffm
Format mpegts
AudioCodec aac
AudioBitRate 128
AudioChannels 2
AudioSampleRate 44100
AVOptionAudio flags +global_header
VideoCodec libx264
AVOptionVideo preset veryfast
VideoBitRate 3000
VideoFrameRate 30
VideoBufferSize 24000
VideoSize hd1080
AVOptionVideo flags +global_header
</stream>The transcode, mp4 output, and stream all work, the only problem is the lack of timeshifting.
Removing the tee muxer and just doing the feed to ffserver fixes the timeshifting. With this command :
ffmpeg -v 32 -threads 1 -f mpegts -analyzeduration 2000000 \
-i "http://192.168.1.175:5004/auto/v4.1?duration=600" \
-f ffm -map 0:v -map 0:a -c:a aac -c:v h264 -preset veryfast \
-b:v 3000k -bufsize 24000k -minrate 2400k -maxrate 3000k \
http://localhost:1234/feed.ffm -
avutil/hwcontext_d3d11va : Fix leak when wrapping texture in AVD3D11FrameDescriptor
5 novembre 2017, par Greg Wessels -
avdevice/decklink_enc : Add support for output of Active Format Description (AFD)
27 mars 2023, par Devin Heitmuelleravdevice/decklink_enc : Add support for output of Active Format Description (AFD)
Implement support for including AFD in decklink output when putting
out 10-bit VANC data.Updated to reflect feedback in 2018 from Marton Balint <cus@passwd.hu>,
Carl Eugen Hoyos <ceffmpeg@gmail.com> and Aaron Levinson
<alevinsn_dev@levland.net>. Also includes fixes to set the AR field
based on the SAR, as well as now sending the AFD info in both fields
for interlaced formats.Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
Signed-off-by : Marton Balint <cus@passwd.hu>