Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • FFMPEG No such filter : 'palettegen'

    24 décembre 2020, par tyasird

    I am using windows 10 and FFmpeg 64-bit Shared Version.

    



    When I use palettegen effect, returns error.

    



    ffmpeg -i input.mov -vf palettegen palette.png


    



    returns

    



    [AVFilterGraph @ 0228d3c0] No such filter: 'palettegen'
Error opening filters!


    



    How can I install this Filter ? Thanks.

    


  • FFMPEG No such filter : 'palettegen'

    7 décembre 2015, par tyasird

    I am using windows 10 and FFmpeg 64-bit Shared Version.

    When I use palettegen effect, returns error.

    ffmpeg -i input.mov -vf palettegen palette.png

    returns

    [AVFilterGraph @ 0228d3c0] No such filter: 'palettegen'
    Error opening filters!

    How can I install this Filter ? Thanks.

  • FFMPEG Output Framecount Different On Audio Files PowerShell

    28 avril 2020, par ilham zacky

    I am using FFPROBE to get some file durations in PowerShell.

    



    For my video it gets the frame count properly but for my audio files it returns a different frame count.

    



    This is my code :

    



    $audioId = "$id.m4a"
$videoId = "$id.mp4"
$duration1 = ffprobe -i $videoId -show_frames 2>&1 | grep -c media_type=video
$duration2 = ffprobe -i $audioId -show_frames 2>&1 | grep -c media_type=audio
echo $duration1
echo $duration2



    



    For video it returns a proper output, but for audio it returns a wrong result.

    



    Any suggestions ?

    



    Thank you