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

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

  • lavu : Add version information for av_version_info()

    3 juillet 2015, par Vittorio Giovara
    lavu : Add version information for av_version_info()
    

    Move the APIchange entry at the top.

    • [DH] doc/APIchanges
    • [DH] libavutil/version.h
  • Update ffmpeg reference to libopencv_core.so version

    18 mai 2015, par DomJack

    I’ve recently installed OpenCV 3.0 on my machine running Ubuntu 15.04 to do some video manipulations via python. I had some initial problems with the installation, and ended up installing both 2.4 and 3.0 versions separately, uninstalling between each attempt with

    sudo find / -name "*opencv*" -exec rm -i {} \;

    I now have a working version of OpenCV 3.0, but it seems my ffmpeg is looking for a 2.4 shared library :

    ffprobe: error while loading shared libraries: libopencv_core.so.2.4: cannot open shared object file: No such file or directory

    My /usr/local/lib folder contains

    1. libopencv_core.so
    2. libopencv_core.so.3.0
    3. libopencv_core.so.3.0.0

    I’ve tried running ldconfig, reinstalling ffmpeg and rebooting, but nothing changes. Is there a way to make OpenCV 3.0 play nicely with ffmpeg, or do I need to have bother a 2.4 version and a 3.0 version installed ?

    Thanks in advance.

  • how to choose ffmpeg video mp3 audio version id ?

    7 juin 2013, par Ulterior

    I am having issues on ffmpeg encoded video files audio tracks. My encoded video contains ID for audio track as extracted from mediainfo :

    I use CODEC_ID_MP3 in guess_format "mov" container for quicktime

    Audio
    ID                                       : 2
    Format                                   : MPEG Audio
    Format version                           : Version 2
    Format profile                           : Layer 3
    Codec ID                                 : .mp3
    Duration                                 : 2s 916ms
    Bit rate mode                            : Constant
    Bit rate                                 : 128 Kbps
    Channel(s)                               : 1 channel
    Sampling rate                            : 16.0 KHz
    Compression mode                         : Lossy
    Stream size                              : 45.3 KiB (2%)
    Language                                 : English

    This is not recognized on a vanilla codecless installation of windows 7, only played by k-lite codec libmad

    I have noticed, that another test file contains similar mp3 track and is played by media player OK :

    Audio
    ID                                       : 2
    Format                                   : MPEG Audio
    Format version                           : Version 1
    Format profile                           : Layer 3
    Mode                                     : Joint stereo
    Mode extension                           : MS Stereo
    Codec ID                                 : 6B
    Duration                                 : 1mn 9s
    Bit rate mode                            : Constant
    Bit rate                                 : 320 Kbps
    Channel(s)                               : 2 channels
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 2.67 MiB (38%)
    Writing library                          : LAME3.98

    The difference I noticed is in Format version number and Codec ID, which is Version 2 from ffmpeg output - I couldnt locate this version setting in ffmpeg source files, so my question is - is there a way to influence this format version identificator and set the codec id as in above playable video ?