
Recherche avancée
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (11229)
-
How do I create a MPEG stream with private binary data using avconv ?
19 février 2013, par haoleI have some binary data that I need to transmit with a MPEG transport stream. I don't need to worry about the tables, because another software in the process is going to insert them into the stream.
I have a fixed private PID that I have to use. Is there a way to just "break" this binary data into TS packets with the my private PID using only this command line tool (avconv) ? If not, is it possible with the C library ?
-
Get output data from x264vfw filter
23 août 2012, par no.ObyI need get H264 stream from x264 encoder and make some kind of live streaming server. Client will connect to the server, then via rtsp recieve video. How can I get data from x264vfw output pin ?
In what way better do that ? -
convert yuv420p raw data to image opencv
21 octobre 2020, par NightRiderI have raw data from rtmp server with pixel format yuv420p


I use pipe to read data. But I don't know how to decode raw data to image.


command = ['ffmpeg']
command.extend(["-loglevel", "fatal", "-i", 'rtmp://localhost/live/stream', "-f", "flv", "-pix_fmt" , 'yuv420p', '-vcodec', 'h264', "-"])
self.process = subprocess.Popen(command, stderr=subprocess.PIPE ,stdout = subprocess.PIPE)
self.output = self.process.stdout
self.fs = width*height*3 // 2
while True:
 data = self.output.read(self.fs)



I have try decode like this enter link description here


But result is enter image description here


Can anyone help me with this problem ?