Recherche avancée

Médias (91)

Autres articles (95)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

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

Sur d’autres sites (6634)

  • Révision 23733 : Report de r23731 : Suite de r23719 : les fonctions _T et _L prennent une option s...

    29 septembre 2017, par cedric@yterium.com

    passer cette option a false permet de debrayer ce nettoyage pour les cas ou ils poserait probleme (exceptions)

  • Debugging FFMPEG Code (libavformat files breakpoint)

    17 octobre 2024, par Holy_diver

    I tried setting up ffmpeg for debugging, a partial success. Been able to setup debug points in top level code but not inside libavformat code files. Any idea how to compile to be able to do so.

    


    Setup :

    


    ./configure --enable-debug=3 --disable-optimizations --disable-decoder=vp9 --disable-decoder=hevc --enable-nvenc --enable-nvdec --enable-cuda --enable-cuvid --enable-nonfree --enable-gpl --extra-cflags="-I/usr/local/cuda/include" --extra-ldflags="-L/usr/local/cuda/lib64" --enable-shared --enable-libx264 --enable-gpl --disable-stripping

make clean

make -j8


    


    VS CODE SETUP

    


     {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/ffmpeg_master/FFmpeg/ffmpeg_g",
            "args": ["-loglevel","trace","-i", "/home/ubuntu/ffmpeg_test/testfiles/LiveOff.HEIC" ,"-map", "0","out%d.png"],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}/ffmpeg_master/FFmpeg",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                },
                {
                    "description": "Set Disassembly Flavor to Intel",
                    "text": "-gdb-set disassembly-flavor intel",
                    "ignoreFailures": true
                }
            ]
        } {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/ffmpeg_master/FFmpeg/ffmpeg_g",
            "args": ["-loglevel","trace","-i", "/home/ubuntu/ffmpeg_test/testfiles/LiveOff.HEIC" ,"-map", "0","out%d.png"],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}/ffmpeg_master/FFmpeg",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                },
                {
                    "description": "Set Disassembly Flavor to Intel",
                    "text": "-gdb-set disassembly-flavor intel",
                    "ignoreFailures": true
                }
            ]
        }


    


  • QML Video doesn't work robust with UDP streaming

    4 avril 2017, par user2810472

    I am using QT/QML to write a player for raspberry-pi. I need to know what is the best practice of using Video QML element for a robust streaming play.

    My QML code is like below,

    Video {
       id: streaming_video
       width : parent.width
       height : parent.height
       autoPlay: false;
       opacity: 0.0
       fillMode : Image.Stretch
       muted : false
    }

    function switch_udpstream_on() {
       streaming_video.opacity = 1.0;
       streaming_video.source = "udp://localhost:7777";
       streaming_video.play();
    }

    function switch_udpstream_off() {
       streaming_video.opacity = 0.0;
       streaming_video.stop();
    }

    Once I started streaming sender like below,

    ffmpeg -re -i 519183632_4.mp4 -vcodec libx264 -pix_fmt yuv420p -tune zerolatency -preset ultrafast -f mpegts udp://rpi-ip:7777

    It shows the load of logs rpi player back end and start infinitely printing,

    WARNING : No decoded frame to show at all. Let’ render black.

    even though I stop sender, player is not stopping printing the above.

    If I use ffplay instead, it works fine.