
Recherche avancée
Autres articles (79)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (12308)
-
libavformat/matroskadec : fix unsigned overflow to improve seeking
21 juillet 2016, par Chris Cunninghamlibavformat/matroskadec : fix unsigned overflow to improve seeking
When seeking a file where codec delay is greater than 0, the timecode
can become negative after offsetting by the codec delay. Failing to cast
to a signed int64 will cause the check against skip_to_timecode to evaluate
true for these negative values. This breaks the "skip_to" seek mechanism.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
Green screen on RTSP stream from USB camera using mediamtx (ffmpeg) [closed]
27 juin 2024, par PavelI need to cast a stream from a USB camera via RTSP as stable as possible (at any moment i need to be able to get a static picture on a remote host, reflecting the real state of affairs in front of the camera) and economically on the used resources (the hardware is very weak).


Camera information. The options highlighted in yellow are those found on all cameras in use.


Trying to write mjpeg to rtsp only displays green screen


And mediamtx output output


runOnInit in mediamtx.yml :


FFmpeg -hwaccel_output_format qsv -fflags nobuffer -f dshow -vcodec mjpeg_qsv -s 640x480 -i video="Integrated Webcam" -vcodec copy -f rtsp rtsp://localhost:$RTSP_PORT/$RTSP_PATH



Thank you for your help


-
Streaming a video with serial port [on hold]
23 août 2019, par kanki66I need an application which is streaming an video recorded by an webcam over the serial port in c#
I opened an port and can send some data over the port. I have access to the webcam and have an picture/video on the screen. For the webcam part i used this tutorial :
https://en.code-bude.net/2013/01/02/how-to-easily-record-from-a-webcam-in-c/void videoSource_NewFrame(object sender, AForge.Video.NewFrameEventArgs eventArgs)
{
//Cast the frame as Bitmap object and don't forget to use ".Clone()" otherwise
//you'll probably get access violation exceptions
pictureBoxVideo.BackgroundImage = (Bitmap)eventArgs.Frame.Clone();
}How can i convert now this to an video as small as possible and send it over the serial port, without saving the video like directly to the serial port ?
Thank you very much for the help