Recherche avancée

Médias (91)

Autres articles (66)

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

  • mxfdec : update current edit unit when seeking in mxf files without index tables

    11 avril 2013, par Marton Balint
    mxfdec : update current edit unit when seeking in mxf files without index tables
    

    Fixes audio packet pts values in some files generated by AVID TRMG 3.01.

    Signed-off-by : Marton Balint <cus@passwd.hu>
    Reviewed-by : Tomas Härdin <tomas.hardin@codemill.se>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/mxfdec.c
  • OpenCV not finding libavcodec installed in centos

    18 juillet 2016, par Ras

    ffmpeg is installed in /usr/local as shared libraries in Cent OS 6.8, but while compiling opencv 2.4.10, it couldn’t find these libraries, configuration output is

    -- Looking for linux/videodev.h
    -- Looking for linux/videodev.h - found
    -- Looking for linux/videodev2.h
    -- Looking for linux/videodev2.h - found
    -- Looking for sys/videoio.h
    -- Looking for sys/videoio.h - not found
    -- checking for module 'libavcodec'
    --   package 'libavcodec' not found
    -- checking for module 'libavformat'
    --   package 'libavformat' not found
    -- checking for module 'libavutil'
    --   package 'libavutil' not found
    -- checking for module 'libswscale'
    --   package 'libswscale' not found
    -- Looking for libavformat/avformat.h
    -- Looking for libavformat/avformat.h - found
    -- Looking for ffmpeg/avformat.h
    -- Looking for ffmpeg/avformat.h - not found

    To run ffmpeg, I added /usr/local/lib to /etc/ld.so.conf file, should I need to add each library separately into directory /etc/ld.so.conf.d/ instead ?

  • Running ffmpeg from a windows service on same machine encounters permissions issue

    8 mars 2012, par gaijintendo

    I had been running a Windows Service, form my machine (which has full read/write access to a network drive).

    The command for ffmpeg was something like this :
    - i \filestore\test.avi -b 500000 -s 640x360 -ar 22050 -copyts -y -vcodec libx264 -acodec ac3 -y \filestore\mp4\test.mp4

    Running it from cmd works perfectly. Running it from a windows service, from the same machine, would yield a File Not found type error. Updating to the latest ffmpeg stable changed that to "Permission denied".

    I am running the service it as 'Local Account'. I was intending to run this on another server, so I need to get a grip on this !

    Does running a service on your machine run as a different user to you when you choose 'Local Account' ?