Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (15757)

  • Create an RTP/RTSP or HTTP stream using OpenCV frames

    1er avril 2018, par Vector

    I have a custom board which takes input stream from a IP camera and the application perform facial detection using OpenCV on the input video stream.

    My use case is to provide an output stream through network which will be accessible through VLC on any device connected in the same network.

    I tried writing OpenCV frames through VideoWriter :

    VideoWriter outStream("/home/user/frames/frame.mjpg", CV_FOURCC('M','J','P','G'), CAP_PROP_FPS, img.size(), true);
    if (outStream.isOpened()){
        outStream.write(img);

    and creating a stream using mjpg_streamer like :

    mjpg_streamer -i "input_file.so -f /home/user/frames" -o "output_http.so -w /usr/local/www -p 5241"

    But the above process shows a lot of latency.
    I can’t use imshow as my hardware does not have any video output port.

    Here is my code : https://pastebin.com/s66xGjAC

  • Slow frame copy from d3d11va to CPU memory in LibAV

    5 juin 2024, par Igor

    I'm using LibAV to decode video (H.264) using dxva2 or d3d11va hardware decoder.
I then copy the decoded video frame from the GPU memory to system memory by calling av_hwframe_transfer_data().

    


    I noticed that when using the modern d3d11va hardware decoder, the CPU load is twice as much as when using the old dxva2 hardware decoder.
I checked with LibAV 6.1 and with the old version V4.4 - the same result.

    


  • trailing options found on command line ffmpeg

    1er juillet 2016, par asad

    ffmpeg complains about trailing options. What parameters are out of the order. I am unable to find any. Please point out some.

    /home/ec2-user/bin/ffmpeg -thread_queue_size 1024 -probesize 18M
       -re -f rawvideo -framerate 1 -pixel_format rgb32 -video_size 1920x1080
       -i pipe:0 -i /home/ec2-user/logo.png
       -i /home/ec2-user/testdata/audio.m4a -ss 0 -t 20
       -filter_complex "[0:v]vflip[main];[1:v]scale=1920/10:-1[si], [main][si]overlay=5:5:format=rgb,format=yuv420p"
       -c:v libx264 /home/ec2-user/output.mp4
       -c:v copy -shortest