Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (54)

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

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

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

  • Is it possible to slow down the audio more than 4 times in ffmpeg ?

    21 mars 2020, par AlexZheda

    It appears that ffmpeg does not allow to slow a video down more than 4 times.

    ffmpeg -i in.mp4 -filter_complex "[0:a]atempo=.5,atempo=.5,atempo=.5,asetpts=N/SR/TB[aa];[0:v]setpts=8*PTS[vv]" -map "[aa]" -map "[vv]" out_x8.mp4

    I am getting Too many packets buffered for output stream 0:0.
    error.
    Whenever I do only 2 times atempo=.5, the same command works.
    Why is that so and are there any workarounds for that ?

  • double rendering with video file(i.e. mov file like) and camera recording file

    17 septembre 2018, par 한승수

    I am making an app for rendering mov file and recorded file by android device at once. because of speed for rendering I cannot use ffmpeg. So I use mediaProjection .virtualdisplay(). but the problem is virtualDisplay only allows to capture screen from very upper left side. so it captures whole upper part of device(which means it captures bar containing battery remains and antenna icons).

    my questions are below

    1. how to capture certain part that I want by using virtualDistply.
    2. any method that I can mitigate rendering speed if I am using ffmpeg ? within 5 second if video length 30 seconds.
  • list txt file of ffmpeg concat demuxer

    6 septembre 2018, par Sinan Güler

    I wanted to concat 10 files of mp4 of the same format/size/bitrate....
    I had my files and the txt file under the same directory :

    Macbook Pro>Macintosh HD>Users>my username>downloads
    The txt file I created looks like this :
    https://i.imgur.com/LP7HgSS.jpg
    I entered the following command in terminal :

    ffmpeg -f concat -i mylist.txt -c copy output
    but always got the same result : no such directory
    Maybe somebody could help point out my mistakes, appreciated !