Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (98)

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

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (6717)

  • How to deal with cv::VideoCapture decode errors ?

    24 février 2016, par George Profenza

    I’m streaming H264 content from an IP camera using the VideoCapture from OpenCV (compiled with ffmpeg support).

    So far things work ok, but every once in a while I get decoding errors (from ffmpeg I presume) :

    [h264 @ 0x103006400] mb_type 137 in I slice too large at 26 10
    [h264 @ 0x103006400] error while decoding MB 26 10
    [h264 @ 0x103006400] negative number of zero coeffs at 25 5
    [h264 @ 0x103006400] error while decoding MB 25 5
    [h264 @ 0x103006400] cbp too large (421) at 35 13
    [h264 @ 0x103006400] error while decoding MB 35 13
    [h264 @ 0x103006400] mb_type 121 in P slice too large at 20 3
    [h264 @ 0x103006400] error decoding MB 20 3

    These messages show up in the console. Is there any clean way to listen to these ? I’d like to skip processing the glitchy frames.

    Any hints/tips ?

  • How to deal with cv::VideoCapture decode errors ?

    21 juin 2018, par George Profenza

    I’m streaming H264 content from an IP camera using the VideoCapture from OpenCV (compiled with ffmpeg support).

    So far things work ok, but every once in a while I get decoding errors (from ffmpeg I presume) :

    [h264 @ 0x103006400] mb_type 137 in I slice too large at 26 10
    [h264 @ 0x103006400] error while decoding MB 26 10
    [h264 @ 0x103006400] negative number of zero coeffs at 25 5
    [h264 @ 0x103006400] error while decoding MB 25 5
    [h264 @ 0x103006400] cbp too large (421) at 35 13
    [h264 @ 0x103006400] error while decoding MB 35 13
    [h264 @ 0x103006400] mb_type 121 in P slice too large at 20 3
    [h264 @ 0x103006400] error decoding MB 20 3

    These messages show up in the console. Is there any clean way to listen to these ? I’d like to skip processing the glitchy frames.

    Any hints/tips ?

  • Syncronising Video/audio with two different sources

    22 mai 2016, par Indy

    I have an issue with an very old film that I’m trying to recover. I have two source of the same film.

    Source 1 (from ffmeg -i) :

    Duration: 02:43:35.77, start: 0.000000, bitrate: 1342 kb/s
    Stream #0:0: Video: mpeg4 (Simple Profile) (DIVX / 0x58564944), yuv420p, 720x480 [SAR 1:1 DAR 3:2], 1200 kb/s, 29.97 fps, 29.97 tbr, 29.97 tbn, 30k tbc
    Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 kb/s

    Source 2 (from ffmeg -i) :

    Duration: 02:46:11.04, start: 0.000000, bitrate: 1625 kb/s
    Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1200x720 [SAR 1:1 DAR 5:3], 1431 kb/s, 30 fps, 30 tbr, 30 tbn, 60 tbc (default)
    Metadata:
     handler_name    : VideoHandler
    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 191 kb/s (default)
    Metadata:
     creation_time   : 2014-06-22 12:06:22
     handler_name    : IsoMedia File Produced by Google, 5-11-2011

    What I would like is to take the audio from source 1 and video from source 2 and create a new file with them.

    I have tried changing the source 1 to 30 fps and then using its audio with source 2’s video but the audio ’fps’ is really after sync after sometime. Perhaps my approach is wrong.

    what’s the best way to take the audio from source 1 synced with source 2’s video ?

    Any help is appreciated. Thanks,
    Indy