
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (66)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (4585)
-
Using Windows named pipes with ffmpeg pipes
26 août 2021, par DriesI'm trying to use Windows Pipes to write data to input pipes in FFmpeg. I'm using the following command for FFmpeg :


ffmpeg -r 24 -pix_fmt rgba -s 1280x720 -f rawvideo -y -i \\.\pipe\videopipe -f s16le -ac 1 -ar 44100 -i \\.\pipe\audiopipe -acodec pcm_s16le -ac 1 -b:a 320k -ar 44100 -vf vflip -vcodec mpeg1video -qscale 4 -bufsize 500KB -maxrate 5000KB OUTPUT_FILE



I tried connecting to it using the
CreateFile()
method but that doesn't seem to work. I've also tried withCreateNamedPipe()
after starting to run the ffmpeg command but then it seems to wait for something else to connect.

I don't know in which order I have to call those two. Do I first need to create a Windows pipe and use the same name in FFmpeg or do I need to first invoke FFmpeg with the named pipes and then connect to it using
CreateFile()
?

-
ffmpeg direct show obvoius problem. ffmpeg is not letting to reconnect to camera
11 avril 2021, par josh joyerI use ffmpeg with command


ffmpeg -f dshow -i video="@device_pnp_\\?\usb#vid_1908&pid_2311&mi_00#6&353461d3&0&0000#{65e8773d-8f56-`11d0-a3b9-00a0c9223196}\global" output.mkv`



It is fine to record camera but it uses direct show standard
Microsoft Windows library that is faulty.
Once connected to camera one is unable to use camera again or disconnect from it.
One should restart computer to connect to camera again.
Microsoft tells not to use direct show (dshow) for camera but
to use AForge or VisioForge libraries.


But ffpmeg uses faulty dshow library. Is there any way to
change direct show to some other so one could connect to camer multiple times ?


-
Cannot Play RTSP Streams From the Internet
17 avril 2023, par jnnksI am trying to receive an rtsp :// stream from the internet. There are many example streams running, but I cannot receive any of them.
ffplay and VLC both fail to receive data. I tried both UDP and TCP with various urls with no success.
Streaming from a local rtsp server with aler9/rtsp-simple-server Docker container works fine.


This is the command I use to watch the stream :


ffplay rtsp://rtsp.stream/pattern



VLC fails with :


[00007f58640015f0] satip stream error: Failed to connect to RTSP server rtsp.stream:554
[00007f58640015f0] access_realrtsp stream error: cannot connect to rtsp.stream:554



What else can I try ?