Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (59)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (8013)

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

    


    This program cannot run on your pc
....

    


    When I close it the CMD was show this :

    


        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;

  • 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
  • dnn : add backend options when load the model

    7 août 2020, par Guo, Yejun
    dnn : add backend options when load the model
    

    different backend might need different options for a better performance,
    so, add the parameter into dnn interface, as a preparation.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_native.c
    • [DH] libavfilter/dnn/dnn_backend_native.h
    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/dnn/dnn_backend_openvino.h
    • [DH] libavfilter/dnn/dnn_backend_tf.c
    • [DH] libavfilter/dnn/dnn_backend_tf.h
    • [DH] libavfilter/dnn_interface.h
    • [DH] libavfilter/vf_derain.c
    • [DH] libavfilter/vf_dnn_processing.c
    • [DH] libavfilter/vf_sr.c