Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (50)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7833)

  • Building OpenCV 2.4.11 on Linux with `libopencv_ffmpeg.so`

    28 décembre 2016, par SomethingSomething

    When downloading OpenCV sources, no matter whether it is for Windows or for Linux, the sources directory contains only the Windows already-compiled shared library 3rdparty/ffmpeg/opencv_ffmpeg.dll, that is essential for the VideoCapture module to work on the Python portings for OpenCV.

    In Linux, as this file is not provided, you’d expect it to be automatically built when you build OpenCV, especially when in CMakeCache.txt, you can spot the line WITH_FFMPEG:BOOL=ON.

    It is of course not built... Any idea ?

  • RELEASE_NOTES : update for 2.5

    3 décembre 2014, par Michael Niedermayer
    RELEASE_NOTES : update for 2.5
    

    If you spot something missing wrong or improvable, do not hesitate
    to push fixes

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] RELEASE_NOTES
  • Insert Frame to middle of Video

    9 août 2015, par user1815241

    I have a case where I need to insert a frame (or many frames) to the middle of a video. I looked at doing ffmpeg cutting, inserting, and then concatenation but unfortunately I have a lot of cuts and the "stitch back" has a lot of choppiness. My thought was that I could leave the video "whole" and then insert frames as the exact spot(s) that I need to do that. This way I would solve the choppiness problem.

    I am currently using ffmpeg and don’t really see any way to accomplish this task with that tool. Google doesn’t seem to be providing much help either.

    Has anyone done this before ? What did you do to insert frames at specific spots.

    As an FYI - I am doing my processing in Java, using FFMPEG, and my video files are mp4 (although I could convert).

    Thank you in advance.