Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (109)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11562)

  • getting exception Your FFProbe version is too old and does not support `-help` option

    26 mai 2015, par Sameer Shaikh

    I installed ffmpeg by doing sudo apt-get install ffmpeg

    From a terminal, when I run /usr/bin/ffprobe -help it runs properly, but it is not running from my package. Instead I get the exception in the title : Your FFProbe version is too old and soes not support '-help'

    I am using laravel and i have installed this package https://github.com/PHP-FFMpeg/PHP-FFMpeg

    Where am i going wrong ?

  • Build openCV specifying ffmpeg version

    25 mai 2015, par Constantine

    I have a number of ffmpeg versions built & installed on my computer. By default, when build, openCV’s modules use ffmpeg libs & headers, installed at systems paths like /usr/local/libs. I need to build openCV with a specific one. I’ve searched CMakeLists trying to find a line, describing how to specify a path to ffmpeg libs and headers, but failed. How can I do the build with a specific ffmpeg version ?

  • Debian Wheezy ffmpeg version 1.2.5 and OpenCV

    27 février 2014, par user3135427

    I recently installed "ffmpeg version 1.2.5" from "deb ftp://ftp.deb-multimedia.org wheezy-backports main" on my Debian Wheezy.

    I wrote some code with OpenCV and now I get the following error when I try to open a video.

    [NULL @ 0x21e2ec0] Value 4613937818241073152.000000 for parameter 'thread_type' out of range
    [NULL @ 0x21e2ec0] Value -4616189618054758400.000000 for parameter 'request_sample_fmt' out of range
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x282d580] decoding for stream 0 failed
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x282d580] Could not find codec parameters (Video: h264 (avc1 / 0x31637661), 23069 kb/s)
    [IMGUTILS @ 0x7ffff1da3fd0] Picture size 0x0 is invalid
    [IMGUTILS @ 0x7ffff1da3fe0] Picture size 0x0 is invalid

    /////// SOLUTION /////////

    I speculated the problem started after I added the following two source to my /etc/apt/sources.list file on Debian Wheezy. I did this procure a newer version of FFMPEG.

    deb ftp:// ftp.deb-multimedia . org wheezy main non-free
    deb ftp:// ftp.deb-multimedia . org wheezy-backports main

    It was then all my code written using the OpenVC started to break. I had a hunch it was my recent upgrade but not sure until I read the following.

    “Make sure proper versions of ffmpeg or gstreamer is installed. Sometimes, it is a headache to work with Video Capture mostly due to wrong installation of ffmpeg/gstreamer.” http: // opencv-python-tutroals.readthedocs.org/en/latest/py_tutorials/py_gui/py_video_display/py_video_display.html

    [ SOLUTION ]

    This search will tell you what installed packages come from Debian Multimedia :

    aptitude search ' i ?origin(Unofficial Multimedia Packages)'

    And this command removes them :

    aptitude purge ' i ?origin(Unofficial Multimedia Packages)'

    Remove the deb-multimedia.org repository from the source.list file. Install FFMPEG and OpenVC and any additional packages that you need, since much was purged from your system during the downgrade.

    sudo aptitude install python-opencv ffmpeg