
Recherche avancée
Autres articles (51)
-
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 (7664)
-
crtmpserver error, appselector can be a final destination
29 mai 2015, par user2366736I’m trying to setup a CRTMP serve by using its script run and its default script crtmpserver.lua. my os is centos6, and kenerl version 2.6.32.
The server start ok, showes
/crtmpserver/src/crtmpserver.cpp:267 GO ! GO ! GO !But when i use ffmpeg to push a flv stream, using the command
ffmpeg -re -i test.flv -acodec copy -vcodec copy -f flv rtmp ://localhost:1935/appselector/room1it shows the error
RTMP_ReadPacket, failed to read RTMP packet header
rtmp ://localhost:1935/appselector/room1 : Operation not permittedand the crtmpserver shows the following error
/applications/appselector/src/rtmpappprotocolhandler.cpp:66 appselector can be a final destination
/thelib/src/protocols/rtmp/basertmpprotocol.cpp:1049 Unable to send rtmp message
to application/thelib/src/netio/epoll/tcpcarrier.cpp:89 Unable to signal data available
/thelib/src/netio/epoll/iohandlermanager.cpp:130 Handlers count changed : 11->10 IOHT_TCP_CARRIER
/thelib/src/protocols/protocolmanager.cpp:45 Enqueue for delete for protocol [IR(3)]
/thelib/src/application/baseclientapplication.cpp:246 Protocol [IR(3)] unregistered from application : appselector
Does the default lua config has some wrong ?
-
lavu/tx : refactor assembly codelet definition
7 février 2022, par Lynnelavu/tx : refactor assembly codelet definition
This commit does some refactoring to make defining assembly codelets
smaller, and fixes compiler redefinition warnings. It also allows
for other assembly versions to reuse the same boilerplate code as
x86.Finally, it also adds the out_of_place flag to all assembly codelets.
This changes nothing, as out-of-place operation was assumed to be
available anyway, but this makes it more explicit. -
Fallback input for ffmpeg
22 septembre 2018, par Daniel CantarinI’m doing some transcoding from a third-party remote input stream that I do not control.
This input stream has errors from time to time, that I would like to mitigate before sending the stream to my transcoding pipeline, avoiding this way some possible problems in the output.
I have several ideas regarding different problems. But the most basic scenario I would like to set up is as follows : when the stream is down, or it somehow loses some frames, I want to fill that video gap with a secondary input (like a blank screen, for example).
For this simple task, I would like to use
ffmpeg
. I know it can mix, let’s say, an input stream with a fullscreen black square static image. However, I have to deal with this other condition : ffmpeg would run in the same infraestructure for the actual transcoding pipeline. That infraestructure must use its computing power for rendering the output. So, whateverffmpeg
command I end up using should use the minimum possible computing power.My actual problem : if I use
-vcodec copy
, in order to use minimum CPU, I can’t alter the original stream. But if I alter the original stream (by mixing it with some other stream), the operation uses CPU.My question : Is there a way to use
-vcodec copy
, but with a fallback input (instead of a mixed one) for when there are video gaps in the primary stream ?Thanks in advance.