Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (55)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • 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 (7503)

  • FFMPEG Slideshow from set of videos and images

    14 septembre 2018, par Rahul

    I’m making a slideshow video from a couple videos and images.

    Making it from images only is quiet easy but what if I have to mix
    small videos too.

    In slideshow the next video/image should come when the previous video is fully played.

    Please suggest a command.

  • Presenting more than 2 videos using FFmpeg [duplicate]

    31 octobre 2018, par Radagskar

    This question already has an answer here :

    I found this answer for combining 2 videos using Ffmpeg

    ffmpeg.exe -i LeftInput.mp4 -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left];
       movie=RightInput.mp4, scale=iw/3:ih/3, fade=out:300:30:alpha=1 [right];
       [left][right] overlay=main_w/2:0 [out]" -b:v 768k Output.mp4

    Is there a way to combine more than 2 ?

    I tried adding [bottom] and [upper] but I’m failing to understand how the overlay works and where do I put more videos.

  • How to share short mp4 videos as gif in android [on hold]

    2 juin 2018, par Hard coder

    I have an app in which I am able to share gifs successfully. Now I am improving my app so that I can save space by using mp4 videos as gif.

    I am displaying mp4 videos (in a loop like gif) to user. But when user wants to share that video I want to share that as gif becuase to end user it is gif only.

    There is a libray FFmpeg. But I can’t use this because this is very heavy ( 20mb)

    Is there any other solution so that I can share mp4 as gif ?