Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5707)

  • How to use -filter_complex and -vf together in ffmpeg ?

    11 juillet 2021, par ChhengRavy

    I want to use -filter_complex and -vf together in one line but I can't do that and get error.

    


    First code :

    


    ffmpeg -i 1.mp4 -filter_complex "[0:v]setpts=0.87*PTS[v];[0:a]atempo=1.15[a]" -map "[v]" -map "[a]" e1.mp4


    


    Second code :

    


    ffmpeg -i 1.mp4 -vf "scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:-1:-1:color=black" e1.mp4


    


    So I combine two code above together. Combined code :

    


    ffmpeg -i 1.mp4 -filter_complex "[0:v]setpts=0.87*PTS[v];[0:a]atempo=1.15[a]" -map "[v]" -map "[a]" -vf "scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:-1:-1:color=black" e1.mp4


    


    I can can't run code I get the error :

    


    -vf/-af/-filter and -filter_complex cannot be used together for the same stream.


    


  • How to combine multiple images horizontally and vertically using ffmpeg [duplicate]

    7 février 2020, par user3625087

    I’m attempting to create a script that can stitch together images side by side. These images are basically letters that I want to create words with (think of those ransom letters in Hollywood movies with randomly cut out letters from magazines). I need to specifically use these images, so I don’t want ffmpeg to type out some words into images itself. I’ve seen some similar answers using hstack and tile filter complexes but those didn’t work for me. Here is what I’ve tried so far :

    ffmpeg -pattern_type glob -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex tile=5x1 test.png

    For this one, -pattern_type didn’t exist as an option (I’m using ffmpeg 4.2 on Windows), so I removed it and the result was 1 letter and black space for the rest.

    ffmpeg -y -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex hstack test.png

    For this one, the result was 2 letters side by side, and then black space for the rest.

    All of my images are of the same height and variable width. Is there a command that can achieve this ?

  • FFMPEG : using video filter with complex filter

    4 septembre 2019, par Sebastien

    I’m using the fluent-ffmpeg Node.js library to perform batch manipulations on video files. The video filter which crops a 16:9 input, adds padding and burns subtitles into the padding.

    In the next step, I would like to use a complex filter to overlay an image as a watermark.

    ff.input(video.mp4)
    ff.input(watermark.png)
    ff.videoFilter([
     'crop=in_w-2*150:in_h',
     'pad=980:980:x=0:y=0:color=black',
     'subtitles=subtitles.ass'
    ])
    ff.complexFilter([
     'overlay=0:0'
    ])
    ff.output(output.mp4)

    However, running this, I get the following error :

    Filtergraph 'crop=in_w-2*150:in_h,pad=980:980:x=0:y=0:color=black,subtitles=subtitles.ass' was specified through the -vf/-af/-filter option for output stream 0:0, which is fed from a comple.
    -vf/-af/-filter and -filter_complex cannot be used together for the same stream.

    From what I understand the video filter and complex filter options can’t be used together. How does one get around this ?