
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (52)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4986)
-
Vb.Net How Can I Send Video To Named Pipe ?
24 juillet 2017, par sword1stI want to create name pipe and send all videos on my listbox to that named pipe. I can create a named pipe like this :
Dim p_to_ffmpeg As NamedPipeServerStream
p_to_ffmpeg = New NamedPipeServerStream("to_ffmpeg", PipeDirection.Out, 1, PipeTransmissionMode.[Byte])But i have no idea how can i send video to a named pipe. I couldn’t find any useful information. I want to use that named pipe on ffmpeg as a input for streaming. Thanks for every help !
-
ffmpeg rtmp publish error Broken pipe
22 juin 2017, par Forrest YuI use ffmpeg push RTMP stream. it was successful that the server is locally,
but when the server is not locally ,it is wrong. The mistake is Broken pipe.
av_interleaved_write_frame() —> ffmpeg error : Broken pipe.
Could anyone tell me why ? tks. -
Read all data from pipe
19 juin 2017, par Maxim FedorovI wrote a wrapper for ffmpeg (с#), the information is transferred and returned through the pipe.
How to effectively read all the information from the pipe ?
Now I’m using the "Read" method of the NamedPipeServerStream class, reading occurs in a loop with small chunks. Reading ends when the number of bytes read is less than the chunk size. This method seems slow and unreliable