Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (68)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8560)

  • Raspberry Pi Camera feedback freezes when moving NEMA 17 stepper motor with A4988 stepper motor driver [closed]

    31 août 2023, par Broteen Das

    I have a Raspberry Pi with a camera module and a NEMA 17 stepper motor connected to it. When I run the command ffplay /dev/video0, the video runs perfectly. However, whilst the video is running, and I run a script that moves the Stepper motor with the A4988 stepper motor driver, the video feed freezes and needs to be restarted.

    &#xA;

    At first I thought it was ffmpeg's fault, so I tried viewing the feed with OpenCV, but the same probelem persisted.

    &#xA;

    I also thought that the CPU prioritization was causing the problem, but this one time, the entire Raspberry Pi froze. The Keyboard, mouse, keys, numlock key, everything was dead (the Numlock light on my keyboard was on, I tried toggling the NumLock, but it did not go off) and so I had to turn off and turn on again the power supply to reboot the Pi.

    &#xA;

    How do I get rid of this issue ?

    &#xA;

  • Animation with gnuplot : only one cruve plotted in an animation whereas 2 expected

    26 mai 2022, par stefan

    I have the following script which is expected to produce the animations of 2 curves :

    &#xA;

    #!/bin/bash&#xA;&#xA;for i in {1..397}; do&#xA;gnuplot -p &lt;&lt;-EOFMarker&#xA;set terminal png;&#xA;set output "pic$i.png";&#xA;set title "power spectrum";&#xA;set xlabel "scale (k)";&#xA;set ylabel "P(k)";&#xA;set key top left;&#xA;set grid;&#xA;set ytics out nomirror;&#xA;set xtics out nomirror;&#xA;set logscale x;&#xA;set logscale y;&#xA;set format x "10^{%L}";&#xA;set yrange [0:30000];&#xA;plot "CAMB-1.3.5/matter_camb$i" u 1:2 w l;&#xA;replot "EFTCAMB_v3_beta/matter_eftcamb$i" u 1:2 w l;&#xA;EOFMarker&#xA;done&#xA;&#xA;# Build movie with ffmpeg&#xA;ffmpeg -start_number 1 -i pic%d.png  movie.mpeg&#xA;

    &#xA;

    Every works fine excepted the fact that only one curve is plotted in animation (CAMB-1.3.5) :

    &#xA;

    Here is an example of frame :

    &#xA;

    enter image description here

    &#xA;

    Why the "replot" command is not taken into account in the generated image ?

    &#xA;

  • Forwarding RTSP streams to client from private networked server via proxy

    21 juin 2016, par beNerd

    I have a setup where I have two physical machines (remote VPSes) :

    1. Server One - This has good processing power in terms of hardware and it’s IP can’t be accessed publicly. It’s private networked to a proxy (server 2) i.e it can only be accessed by the proxy server. Running nodejs/expressjs and ffmpeg/ffserver on ubuntu.

    2. Server Two : Reverse Proxy. Publicly accessible. Implements nginx which pipes the requests to Server One.

    Now, I have client apps that needs to play RTSP streams configured in the FFSERVER residing on Server One. Since I cannot access server one directly and only via proxy, I need a mechanism where I can accept RTSP requests on my nodejs api (which receives requests from nginx proxy via proxy pass config block), do some validations (session tokens here) and then when validated, contact the underlying ffserver asking for the stream. As soon as I receive the stream, I should be able to forward to the asking client.

    Possible ? How ?