Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (103)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (9517)

  • Combining Filters with Normal Options

    16 mars 2019, par Matt McManis

    What is the difference between using an option as a Filter vs a Normal option ?

    Should I always use Filters instead of Normal options when possible ?

    Will they still work if you combine them together ? Or should you use always use related ones together with their same method ?


    Examples

    Scale and Algorithm

    All Filters

    -vf "scale=-2:720:flags=lanczos"

    Filter Scale, Normal Algorithm

    -vf scale=-2:720
    -sws_flags lanczos

    Aspect Ratio SAR and DAR

    All Filters

    -vf "setsar=1:1,setdar=4:3"

    Filter SAR, Normal Aspect

    -vf setsar=1:1
    -aspect 4:3

    Pixel Format and Quality

    Filter Pixel Format, Normal Quality

    -vf format=yuv420p
    -preset medium -b:v 2500K

    Normal Pixel Format, Normal Quality

    -pix_fmt yuv420p
    -preset medium -b:v 2500K
  • Combining multiple image files into a video while using filter_complex to apply a watermark

    14 décembre 2017, par Geuis

    I’m trying to combine two ffmpeg operations into a single one.

    Currently I have two sets of ffmpeg commands that first generate a video from existing images, then runs that video through ffmpeg again to apply a watermark.

    I’d like to see if its possible to combine these into a single operation.

    # Create the source video
    ffmpeg -y \
    -framerate 1/1 \
    -i layer-%d.png \
    -r 30 -vcodec libx264 -preset ultrafast -crf 23 -pix_fmt yuv420p \
    output.mp4

    # Apply the watermark and render the final output
    ffmpeg -y \
    -i output.mp4 \
    -i logo.png \
    -filter_complex "[1:v][0:v]scale2ref=40:40[a][b];[b][a]overlay=(80):(main_h-200-80)" \
    final.mp4
  • fftools/cmdutils : add support for level flag in loglevel option parser

    3 avril 2018, par Tobias Rapp
    fftools/cmdutils : add support for level flag in loglevel option parser
    

    Allows to manage the AV_LOG_PRINT_LEVEL flag as a prefix to the loglevel
    option value, similar to the existing AV_LOG_SKIP_REPEATE flag. Adds
    support for setting flags relative to the existing value by using a
    prefix.

    Previous version reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Tobias Rapp <t.rapp@noa-archive.com>

    • [DH] fftools/cmdutils.c