Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (49)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (6600)

  • Is there iOS HLS player that can read #EXT-X-PROGRAM-DATETIME tag in manifest

    12 juillet 2017, par ukits

    about HLS streaming in iOS,

    for calculating the delay between streaming server and iOS client, it need to read #EXT-X-PROGRAM-DATETIME tag in HLS chunk’s manifest.

    iOS AVPlayer object doesn’t support to read tags of incoming streaming.

    Because iOS AVPlayer object doesn’t support to read tags of incoming streaming, we have to look for open source or commercial HLS player library that can read tag using ffmpeg or the other.

    If you have a library you know, recommend it please.

  • Can not set the number of channels in VideoCapture in OpenCV

    30 septembre 2016, par vkubicki

    I am trying to use OpenCV to apply treatments on an mj2 file encoded as grayscale uint16 per pixel. Unfortunately, a non disclosure agreement covers this file (which I did not generate myself) and I can not post a sample mj2 file.

    The description of my .mj2 file as provided by ffmpeg is :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'data/DEVISSAGE_181.mj2':
     Metadata:
       major_brand     : mjp2
       minor_version   : 0
       compatible_brands: mjp2
       creation_time   : 2015-10-09 08:07:43
     Duration: 00:01:03.45, start: 0.000000, bitrate: 14933 kb/s
       Stream #0:0: Video: jpeg2000 (mjp2 / 0x32706A6D), gray16le, 1152x288, lossless, 14933 kb/s, SAR 1:4 DAR 1:1, 5.50 fps, 5.50 tbr, 55 tbn, 55 tbc (default)
       Metadata:
         creation_time   : 2015-10-09 08:07:43
         handler_name    : Video
         encoder         : Motion JPEG2000

    I take it that gray16le confirms the uint16 encoding somehow.

    Here is my C++ code :

    #include<iostream>

    #include "opencv2/opencv.hpp"

    int main(int, char**) {
       cv::VideoCapture cap("data/DEVISSAGE_181.mj2"); // open the video file
       cap.set(CV_CAP_PROP_FORMAT, CV_16UC1);

       cv::Mat frame;
       cap.read(frame); // get a new frame from file

       std::cout &lt;&lt; "frame.rows: " &lt;&lt; frame.rows &lt;&lt; ", frame.cols: " &lt;&lt; frame.cols &lt;&lt; ", frame.channels(): " &lt;&lt; frame.channels() &lt;&lt; std::endl;

       return 0;
    }
    </iostream>

    The result of running this code is :

    frame.rows: 288, frame.cols: 1152, frame.channels(): 3, frame.depth(): 0

    Which indicates a 3 channels, CV_8U pixel encoding. Why does the cap.set instruction appear to be ignored ? What should I do to get the correct encoding ?

  • Get "Delay relative to video" value using ffmpeg

    22 avril 2023, par user3449922

    I like to known if is possible detect via ffmpeg the value of property "Delay relative to video" showed here :

    &#xA;

    Audio #2&#xA;ID                                       : 3&#xA;Format                                   : AC-3&#xA;Format/Info                              : Audio Coding 3&#xA;Commercial name                          : Dolby Digital&#xA;Codec ID                                 : A_AC3&#xA;Duration                                 : 10 min 0 s&#xA;Bit rate mode                            : Constant&#xA;Bit rate                                 : 320 kb/s&#xA;Channel(s)                               : 2 channels&#xA;Channel layout                           : L R&#xA;Sampling rate                            : 48.0 kHz&#xA;Frame rate                               : 31.250 FPS (1536 SPF)&#xA;Bit depth                                : 32 bits&#xA;Compression mode                         : Lossy&#xA;Delay relative to video                  : 1 s 78 ms&#xA;Stream size                              : 22.8 MiB (1%)&#xA;Language                                 : rom&#xA;Service kind                             : Complete Main&#xA;Default                                  : No&#xA;Forced                                   : No&#xA;

    &#xA;

    Thank you !

    &#xA;