Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (65)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5683)

  • cygwin : Enable MSVS support

    8 août 2015, par Henrik Gramner
    cygwin : Enable MSVS support
    

    `cl -showIncludes` creates absolute Windows paths for some files, attempt
    to convert those to Unix paths.

    Use relative paths for dependencies located in or below the working directory
    in order to mimic the behavior of gcc and to make the paths more readable.

    Make the dependency generation script a bit more robust in general.

    • [DH] configure
    • [DH] tools/msvsdepend.sh
  • JavaCV pass video frame to imread()

    6 décembre 2017, par Tina J

    I’m trying to use JavaCV for template matching. The demo example is located here. I add all their .jar files to the project. I need to pass a video frame (say video.mp4’s last frame) to imread() instead of it reading the source image from file. How can I do that ?

    String [] arg={"laff.png","template.png"};
    FrameGrabber grabber = new FFmpegFrameGrabber("video.mp4");
    System.out.println(grabber.getFrameRate());    //returns 0???

    // read in image default colors
    Mat sourceColor = imread(args[0]);   // pass last frame of video.mp4 instead of args[0]

    UPDATE : I now can pass [the first] video frame to imread() using the following way (key point is to call start()). So I got the conversion done. Now I need to know how to grab a particular frame number, say the last frame.

    FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("video.mp4");
    grabber.start();
    System.out.println(grabber.getLengthInTime());
    OpenCVFrameConverter.ToMat converter = new OpenCVFrameConverter.ToMat();
  • avcodec/cuvid : Add support for P010/P016 as an output surface format

    22 novembre 2016, par Philip Langdale
    avcodec/cuvid : Add support for P010/P016 as an output surface format
    

    The nvidia 375.xx driver introduces support for P016 output surfaces,
    for 10bit and 12bit HEVC content (it’s also the first driver to support
    hardware decoding of 12bit content).

    The cuvid api, as far as I can tell, only declares one output format
    that they appear to refer to as P016 in the driver strings. Of course,
    10bit content in P016 is identical to P010, and it is useful for
    compatibility purposes to declare the format to be P010 to work with
    other components that only know how to consume P010 (and to avoid
    triggering swscale conversions that are lossy when they shouldn’t be).

    For simplicity, this change does not maintain the previous ability
    to output dithered NV12 for 10/12 bit input video - the user will need
    to update their driver to decode such videos.

    • [DH] compat/cuda/dynlink_cuviddec.h
    • [DH] libavcodec/cuvid.c
    • [DH] libavcodec/version.h