
Recherche avancée
Autres articles (56)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (7768)
-
ffmpeg with high delay in first input stream
15 juin 2018, par DeStOvMy goal is to use ffmpeg to create a stream which contains two other streams (both input streams should be next to each other). In general it works with the following command :
ffmpeg -i rtmp://server/live/streamA -i rtmp://server/live/streamB \
-filter_complex '[0:v]pad=800:ih+10[int];[int][1:v]overlay=400:0[vid]' \
-map [vid] -f flv - | ffplay -fflags nobuffer -The problem is that streamA has a quite large delay of two to three seconds, i.e. if something happens in streamA it is shown after 2 seconds. The delay for streamB is moderate.
If I swap the order of the input streams, i.e. "-i .../streamB -i .../streamA" streamB has the high delay and the delay of streamA is moderate. My guess is that this is because the second stream is opened some seconds after the first stream was opened (but I don’t know for sure).
How can i fix it so that both streamA and streamB are in real time ?
-
Revision 33199783ea : Added tests for high bit depth quantize functions This was originally part of c
4 juin 2015, par Julia RobsonChanged Paths :
Add /test/quantize_test.cc
Modify /test/test.mk
Added tests for high bit depth quantize functionsThis was originally part of change-id:Idef18f90b111a0d0c9546543d3347e551908fd78
but the rest of that patch has previously been incorporated into nextgen
without these tests.Change-Id : I6ac491ed1cfc153e0ed3cb999c76feac9d5e74e3
-
FFMpeg getting too high fps
23 février 2017, par user19283043Actual fps of video is 25 but keep getting 90 fps from ffmpeg.
I’m not sure why it is detecting wrong framerate and if I set ’fps=40’, fps is even getting higher.This is my code of ffmpeg below :
var cmd = ffmpeg()
.input(data.img_path)
.format('mp4')
.videoCodec('libx264')
.audioBitrate('48k')
.audioChannels(2)
.outputOptions('-movflags', 'frag_keyframe')
.videoBitrate('1024k')Is there any way to fix this ?