Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (100)

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

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

Sur d’autres sites (12031)

  • FFMPEG RTMP not working in my red5pro module on Ubuntu 14.0.4

    24 janvier 2018, par Atul

    This following command not working in my java module (this takes snap from live stream and save it)
    Runtime.getRuntime().exec("ffmpeg -i \"rtmp ://127.0.0.1:1935/live/mytest live=1 timeout=2\" -f image2 -vframes 1 /snaps/testo.jpg") ;

    If I use same command on Ubuntu 14.0.4 console it works. Same command working in my red5pro module on Window but not on Ubuntu.

    When I use
    String[] execStr = "/usr/local/bin/ffmpeg","-i","rtmp ://127.0.0.1:1935/live/mytest","live=1","timeout=2","-f","image2","-vframes","1","/snaps/tt.jpg" ;
    ProcessBuilder pb = new ProcessBuilder("ffmpeg -i rtmp ://localhost/live/mytest live=1 timeout=2 -f image2 -vframes 1 /snaps/testo.jpg") ;

    It always throw stream not found ( in red5pro console)

  • avdevice/decklink : Fix compilation of module on OSX

    9 janvier 2018, par Devin Heitmueller
    avdevice/decklink : Fix compilation of module on OSX
    

    Clang applies the missing-prototypes warning on C++ files, whereas
    gcc only applies it to C. As a result, the decklink_common.cpp file
    fails to build because of missing prototypes in DecklinkDispatch.cpp
    (which is #included by decklink_common.cpp).

    We don't want to change the actual Blackmagic SDK sources, so
    suppress the warning just for that one #include.

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/decklink_common.cpp
  • "python setup.py egg_info" when installing a module

    9 novembre 2017, par Adam Kamil
    PS C:\Users\adamk\AppData\Local\Programs\Python\Python36-32\Scripts> pip install --upgrade setuptools
    Collecting setuptools
     Downloading setuptools-36.6.0-py2.py3-none-any.whl (481kB)
       100% |████████████████████████████████| 481kB 435kB/s
    Installing collected packages: setuptools
     Found existing installation: setuptools 28.8.0
       Uninstalling setuptools-28.8.0:
         Successfully uninstalled setuptools-28.8.0
    Successfully installed setuptools-36.6.0
    PS C:\Users\adamk\AppData\Local\Programs\Python\Python36-32\Scripts> pip install .\ffmpeg-3.4.tar.bz2
    Processing c:\users\adamk\appdata\local\programs\python\python36-32\scripts\ffmpeg-3.4.tar.bz2
       Complete output from command python setup.py egg_info:
       Traceback (most recent call last):
         File "<string>", line 1, in <module>
         File "c:\users\adamk\appdata\local\programs\python\python36-32\lib\tokenize.py", line 452, in open
           buffer = _builtin_open(filename, 'rb')
       FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\adamk\\AppData\\Local\\Temp\\pip-rlpa5bd4-build\\setup.py'

       ----------------------------------------
    Command "python setup.py egg_info" failed with error code 1 in C:\Users\adamk\AppData\Local\Temp\pip-rlpa5bd4-build\
    </module></string>

    I tried many things like updating my setuptools. Stil didint work. If someone could help, it would really help ! -Adam