
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (110)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (4135)
-
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>