Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

  • 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 ;

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

Sur d’autres sites (10650)

  • dnn/openvino : support model input resize

    18 janvier 2021, par Ting Fu
    dnn/openvino : support model input resize
    

    OpenVINO APIs require specify input size to run the model, while some
    OpenVINO model does accept different input size. To enable this feature
    adding input_resizable option here for easier use.
    Setting bool variable input_resizable to specify if the input can be resizable or not.
    input_resizable = 1 means support input resize, aka accept different input size.
    input_resizable = 0 (default) means do not support input resize.
    Please make sure the inference model does accept different input size
    before use this option, otherwise the inference engine may report error(s).
    eg : ./ffmpeg -i video_name.mp4 -vf dnn_processing=dnn_backend=openvino :\
    model=model_name.xml:input=input_name:output=output_name :\
    options=device=CPU\&input_resizable=1 -y output_video_name.mp4

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
  • Python imageio cant read/write | First-Order-Model

    19 août 2020, par user10847428

    I want to make a first order model with https://github.com/AliaksandrSiarohin/first-order-model , but when I run the crop-video.py with python 3.8 I get this windows popup :

    &#xA;

    This program cannot run on your pc&#xA;....

    &#xA;

    When I close it the CMD was show this :

    &#xA;

        H:\first-order-model\first-order-model>py crop-video.py --inp driving_video/zsebibaba.mp4&#xA;Traceback (most recent call last):&#xA;  File "crop-video.py", line 154, in <module>&#xA;    commands = process_video(args)&#xA;  File "crop-video.py", line 87, in process_video&#xA;    video = imageio.get_reader(args.inp)&#xA;  File "C:\Python38\lib\site-packages\imageio\core\functions.py", line 129, in get_reader&#xA;    return format.get_reader(request)&#xA;  File "C:\Python38\lib\site-packages\imageio\core\format.py", line 168, in get_reader&#xA;    return self.Reader(self, request)&#xA;  File "C:\Python38\lib\site-packages\imageio\core\format.py", line 217, in __init__&#xA;    self._open(**self.request.kwargs.copy())&#xA;  File "C:\Python38\lib\site-packages\imageio\plugins\ffmpeg.py", line 358, in _open&#xA;    self._load_infos()&#xA;  File "C:\Python38\lib\site-packages\imageio\plugins\ffmpeg.py", line 523, in _load_infos&#xA;    raise IOError(fmt % err2)&#xA;OSError: Could not load meta information&#xA;=== stderr ===&#xA;&#xA;A hozzfrs megtagadva. ( Acces denied)&#xA;</module>

    &#xA;

    The python38 folder in the C : is read-only and I tried change it but didnt work.

    &#xA;

    How can I solve this problem ?

    &#xA;

  • avfilter/vf_derain.c : put all the calculation in model file.

    20 mars 2020, par Guo, Yejun
    avfilter/vf_derain.c : put all the calculation in model file.
    

    currently, the model outputs the rain, and so need a subtraction
    in filter c code to get the final derain result.

    I've sent a PR to update the model file and accepted, see at
    https://github.com/XueweiMeng/derain_filter/pull/3

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_derain.c