Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (74)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (10152)

  • Cant install ffmpeg on my centos 6.8 [migrated]

    6 février 2017, par Cain Nuke

    Hi,

    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.txt

    Why is that ?

    Thank you.

  • how can I let ffmpeg use cuda context created externally ?

    20 février 2020, par Wang

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

    1. initialize and create cuda context via ffmpeg’s av_hwdevice_ctx_create.
    2. 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 ?

  • Is there a way to convert a moviepy VideoFileClip to a binary stream in memory ?

    14 décembre 2019, par Eric Nguyen

    I 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.