Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (92)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (17004)

  • LAV Splitter Source Filter stop after a few seconds

    13 juin 2015, par Hamed GH

    I use LAV Splitter Source filter for playing media urls in directshow graph.
    I don’t why after a few seconds, it is stopped.

    I read some articles (such as the following) about settings of this filter. but not worked.

    Understanding buffer/bitrate statistics in Media Player Classic

    How to make MPC-HC to cache more aggressively

    Any help would be appreciated.

  • ffmpeg No such filter : ''

    30 novembre 2018, par user2740741

    I am trying to create a video from two audio files, one concatenated after the other, and an image as the background, with text drawn on top of it.


    Here’s the ffmpeg command I’m trying to do this with :

    FILTER_GRAPH=$(cat <<-END  
       [0]drawtext=fontcolor=white:fontsize=28:text=test:x=w-tw-16:y=h-th-16[vd0];
       [vd0]split[v0][v1];
       [v0][1][v1][2]concat=n=2:v=1:a=1[out]
    END
    )
    ffmpeg -loop 1 -i bg.png -i a.m4a -i b.m4a -filter_complex $FILTER_GRAPH -map "[out]" -shortest out.mp4

    I am getting this error :

    No such filter: ''
    Error initializing complex filters.
    Invalid argument

    What am I doing wrong here ?

  • ffmpeg.js filter command without quotes

    10 avril 2019, par user2212461

    I want to use a filter in an ffmpeg version compiled for Javascript (ffmpeg.js). But the parser doesn’t seem to handle quotes, so I need to write the full command without quotes.

    How can I write the following command without quotes ?

    ffmpeg -i video.mp4 -i image.jpg -filter_complex "[1][0]scale2ref[i][v];[v][i]overlay=10:10:enable=\'between(t,1,2)\'" -c:a copy output.mp4

    In javascript I specify the command as follows :

    worker.postMessage({
    type: 'command',
    arguments: "-i video.mp4 -i image.jpg -filter_complex '[1][0]scale2ref[i][v];[v][i]overlay=10:10' -c:a copy output.mp4".split(' '),
    files: [
    {
       data: new Uint8Array(videofile),
       name: 'video.mp4'
    },
    {
       data: new Uint8Array(imagefile),
       name: 'image.jpg'
    },

    ]
    }) ;

    Which however results in :

    [AVFilterGraph @ 0xdf4c30] No such filter :
    ’[1][0]scale2ref[i][v] ;[v][i]overlay=10:10’

    I checked and the overlay filter works in simpler version without quotes, for example this command works :

    arguments: "-i video.mp4 -i image.jpg -filter_complex overlay=10:10 -c:a copy output.mp4".split(' '),