
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (103)
-
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 (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (4299)
-
No member named 'clock' in the global namespace when using FFmpeg pod
24 mai 2021, par BobrovskyMy app (iOS 7+, Xcode 6) uses CocoaPods for its dependencies. One of the dependencies is FFmpeg.



When I build my app I get several similar looking issues like





/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/ctime:60:9 :
 No member named 'clock' in the global namespace ; did you mean 'flock' ?





I learned that this is because FFmpeg includes
time.h
file inlibavutil
subfolder. Thistime.h
hides systemtime.h
from the compiler and thus the errors.


I tried to manually rename FFmpeg's time.h to something else and this helps. Now I want to do that automatically and in a way that will survive next 'pod update'.



I tried to add libavutil to
Sub-Directories to Exclude In Recursive Searches
but this doesn't help at all.


I tried to remove "$PODS_ROOT/Headers/Public/FFmpeg/libavutil" from
Header Search Paths
and it didn't help either.


I know there are
prepare_command
andpost_install
hooks one can use in his Podfile but unfortunately I don't know if these are helpful in my case.


So, how can I exclude time.h in libavutil of FFmpeg pod from header search paths (I don't mind to rename or even remove the time.h) ?


-
dnn/openvino : refine code for better model initialization
18 janvier 2021, par Ting Fudnn/openvino : refine code for better model initialization
Move openvino model/inference request creation and initialization steps
from ff_dnn_load_model_ov to new function init_model_ov, for later input
resize support.Signed-off-by : Ting Fu <ting.fu@intel.com>
-
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>