
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8980)
-
Cant install ffmpeg on my centos 6.8 [migrated]
6 février 2017, par Cain NukeHi,
I am trying to install ffmpeg with this command :
yum install ffmpeg ffmpeg-devel
but I get this error
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Install Process
Determining fastest mirrors
Error: Cannot find a valid baseurl for repo: base
YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
Eg. Invalid release/
removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/$releasever/base/mirrorlist.txtWhy is that ?
Thank you.
-
how can I let ffmpeg use cuda context created externally ?
20 février 2020, par WangSome libraries for example the ffmpeg are using dynamically loaded one. But our project is linked to cuda driver directly. I would like to share the same context between them. I tried the naive way to do this :
- initialize and create cuda context via ffmpeg’s
av_hwdevice_ctx_create
. - then use
cuCtxSetCurrent
to set the obtained the context created by step one.
This works fine. However, I want share the context in the other way around : create and manage the context in our code then share the context with ffmpeg. Is this possible ?
- initialize and create cuda context via ffmpeg’s
-
Is there a way to convert a moviepy VideoFileClip to a binary stream in memory ?
14 décembre 2019, par Eric NguyenI am trying to convert a VideoClipFile that’s already loaded into memory and convert to a binary stream so that I can save it to a cloud storage system. However, the cloud storage system only accepts binary streams, so I can’t just use the normal save in moviepy. The other option is to write the binary stream to disk, then open it as a binary stream, but if I have thousands of videos that’s going to be too costly. Thanks for the help.