Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (92)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11435)

  • Evolution #4120 : Ajouter l’info de numéro de nouvelle version directement dans le bouton "Mettre ...

    29 mars 2018, par b b

    Super, c’est voulu d’avoir utilisé -> au lieu d’un simple tiret comme séparateur ?

  • Add watermark text on mkv video using ffmpeg on windows version

    27 mars 2018, par Movie now

    I want to put a text watermark on my mkv video using ffmpeg which appears almost 3 times for a short period of time in the whole video.

    The code that i am using :

    ffmpeg
     -i Kaalakaandi.mkv
     -map 0
     -vf "drawtext=enable='between(t,600,660)':fontsize=20: \

    fontfile=C:\Windows\Fonts\arial.ttf:
     text='For More Visit Movienow.me':
     x=w-tw-10:
     y=h-th-10" -c:
     v libx264 output.mkv

    But I am getting this error :

    At least one output must be specified

  • Update ffmpeg reference to libopencv_core.so version

    18 mai 2015, par DomJack

    I’ve recently installed OpenCV 3.0 on my machine running Ubuntu 15.04 to do some video manipulations via python. I had some initial problems with the installation, and ended up installing both 2.4 and 3.0 versions separately, uninstalling between each attempt with

    sudo find / -name "*opencv*" -exec rm -i {} \;

    I now have a working version of OpenCV 3.0, but it seems my ffmpeg is looking for a 2.4 shared library :

    ffprobe: error while loading shared libraries: libopencv_core.so.2.4: cannot open shared object file: No such file or directory

    My /usr/local/lib folder contains

    1. libopencv_core.so
    2. libopencv_core.so.3.0
    3. libopencv_core.so.3.0.0

    I’ve tried running ldconfig, reinstalling ffmpeg and rebooting, but nothing changes. Is there a way to make OpenCV 3.0 play nicely with ffmpeg, or do I need to have bother a 2.4 version and a 3.0 version installed ?

    Thanks in advance.