Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (82)

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

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

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

  • Anomalie #3440 (Nouveau) : Disparition du texte dans l’onglet à l’étape 3 de l’installation

    8 mai 2015, par Franck Dalot

    Bonjour
    Spip 3.1 [22074]
    php 5.4.38

    Quand une personne fait une nouvelle installation le texte présent dans l’onglet à l’étape 3 disparait contrairement aux autres étapes
    Voir la copie d’écran "Installation_3" pour comprendre. Je joins une copie de l’étape 2 pour comparaison.
    Franck

  • opencv installation ffmpeg error

    22 avril 2016, par tGeek

    I have been trying to install opencv for a long time in my fedora 20 32 bit system.I followed the instructions from http://docs.opencv.org/trunk/doc/py_tutorials/py_setup/py_setup_in_fedora/py_setup_in_fedora.html#install-opencv-python-in-fedora
    But after all cmake commands when I m trying to make it I am getting an error again and again.

       scanning dependencies of target opencv_createsamples
        [100%] Building CXX object    apps/haartraining/CMakeFiles/opencv_createsamples.dir/createsamples.cpp.o
       Linking CXX executable ../../bin/opencv_createsamples
      /lib/libavcodec.so.55: undefined reference to `vpx_codec_vp9_dx_algo'
       /lib/libavcodec.so.55: undefined reference to `vpx_codec_vp9_cx_algo'
       collect2: error: ld returned 1 exit status
       make[2]: *** [bin/opencv_createsamples] Error 1
      make[1]: *** [apps/haartraining/CMakeFiles/opencv_createsamples.dir/all] Error 2
       make: *** [all] Error 2

    I have followed so many articles about the ffmpeg versions and updating stuff but did understand a little. but when I tried

    $ sudo yum update ffmpeg

    I got the error as

    >Package(s) ffmpeg available, but not installed.
    No packages marked for update

    What should I do ?

  • stop ffmpeg gently (to allow it to finish writing mp4 file) when streaming from udp

    22 juillet 2015, par user1913115

    i’m trying to receive a udp stream on a server and write it to an mp4 file. this works fine :

     ffmpeg -i udp://127.0.0.1:12345 -codec copy out.mp4

    if i press CTRL+C (or send SIGINT to the process) the ffmpeg quits and i have a working mp4 file.

    however, if the data stops coming in on the udp port (e.g. after 10 minutes of streaming) and i try to stop ffmpeg it requires 2 interrupt signals at which point ffmpeg exits abruptly and results in an unplayable mp4 file.

    does anyone know how to prevent ffmpeg from hanging when there’s no input data or to force it to write out the mp4 header ?

    i know i can specify a url option

    udp://127.0.0.1:12345?timeout=<microseconds>
    </microseconds>

    however, i need to be able to ignore occasional (5-10 minute long) pauses during the process of recording and only quit at the end.
    so even if i set timeout=60000000 it will cause my app to wait for 10 minutes when i want to stop the stream (e.g. if there’s no data) and i need it to quit immediately when i send a SIGINT to it