
Recherche avancée
Autres articles (59)
-
List of compatible distributions
26 avril 2011, parThe 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 2013Puis-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 2011If 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 user10847428I 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
Traceback (most recent call last):
 File "crop-video.py", line 154, in <module>
 commands = process_video(args)
 File "crop-video.py", line 87, in process_video
 video = imageio.get_reader(args.inp)
 File "C:\Python38\lib\site-packages\imageio\core\functions.py", line 129, in get_reader
 return format.get_reader(request)
 File "C:\Python38\lib\site-packages\imageio\core\format.py", line 168, in get_reader
 return self.Reader(self, request)
 File "C:\Python38\lib\site-packages\imageio\core\format.py", line 217, in __init__
 self._open(**self.request.kwargs.copy())
 File "C:\Python38\lib\site-packages\imageio\plugins\ffmpeg.py", line 358, in _open
 self._load_infos()
 File "C:\Python38\lib\site-packages\imageio\plugins\ffmpeg.py", line 523, in _load_infos
 raise IOError(fmt % err2)
OSError: Could not load meta information
=== stderr ===

A hozzfrs megtagadva. ( Acces denied)
</module>


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


How can I solve this problem ?


-
dnn/openvino : support model input resize
18 janvier 2021, par Ting Fudnn/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.mp4Signed-off-by : Ting Fu <ting.fu@intel.com>
-
dnn : add backend options when load the model
7 août 2020, par Guo, Yejundnn : 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