Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (99)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (7574)

  • Anomalie #2076 : Surcharge des fichiers de langues

    10 mai 2011, par Guy Cesaro

    doublon avec #2075, pb de double clic.

  • lavc/aacpsdsp : fix clobber on RISC-V LP64D/ILP32D

    6 octobre 2022, par Rémi Denis-Courmont
    lavc/aacpsdsp : fix clobber on RISC-V LP64D/ILP32D
    

    Although the DSP function only uses single precision from RISC-V F, the
    caller may leave double precision values in the spilled registers if the
    calling convention supports double precision hardware floats. Then, we
    need to save and restore FS registers as double precision.

    Conversely, we do not need to save anything at all if an integer calling
    convention is in use. However we can assume that single precision floats
    are supported, since the Zve32f extension implies the F extension.
    So for the sake of simplicity, we always save at least single precision
    values.

    In theory, we should even save quadruple precision values if the LP64Q
    ABI is in use. I have yet to see a compiler that supports it though.

    • [DH] libavcodec/riscv/aacpsdsp_rvv.S
  • Can not open a video file in OpenCV

    31 octobre 2017, par mans

    I have a video file that encoded in h264 and save in mkv format (*.mkv).
    I can pen file in VLC and play it, but I want to open it in OpenCV and extract each frame of the video.

    I have this code :

    std::string fileName = "D:/Temp/video.mkv";

    cv::VideoCapture capture(fileName);
    capture.set(CV_CAP_PROP_FOURCC, CV_FOURCC('H', '2', '6', '4'));
    if (!capture.isOpened())
    {
       //error!
       std::cout << "Can not load video";
    }
    else
    {
       double prevtimestamp = 0;
       cv::Mat frame;

       while (1)
       {
           capture.grab();
           double timestamp = capture.get(CV_CAP_PROP_POS_MSEC);

       }
    }

    when I run this code, I am getting message that the file can not be open.

    My questions :

    1. Is there anything wrong with this code ?
    2. Do I need FFMPEG on the path so OpenCV can open h264 videos ?
    3. How can I get more information why OpenCV can not open the file ?