Recherche avancée

Médias (91)

Autres articles (95)

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

  • avcodec/options_table : fix strict compliance constant flags to match the strict field

    2 mai 2016, par Michael Niedermayer
    avcodec/options_table : fix strict compliance constant flags to match the strict field
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/options_table.h
  • Use ffmpeg to resize one input's dimension to match another input's dimension

    18 novembre 2022, par Hans GD

    I need to resize one image A to match one dimension of another input B (make height of A match the height of B, for example). I will do this for several pairs of images in a folder, for which I will use a script in the end, but I wanted to know if this particular operation can be done only with ffmpeg.

    &#xA;

    Again, the final script could read the image, find the size and use scale=-1:height to accomplish the final goal, but is it posible to make the title's operation only with ffmpeg ?

    &#xA;

  • Automatically match output file with input file (Applescript x FFMPEG)

    2 mars 2018, par Wallie

    I use the following AppleScript as an Automator Service to right click a video file in the finder and burn in a matching subtitle file (.ass) with an ffmpeg terminal command. In this case ffmpeg encodes a new Prores 422(HQ) file.

    on run {input, parameters}
    tell application "Terminal"
       activate
       set filesString to ""
       repeat with file_ in input
           set filesString to filesString &amp; " " &amp; quoted form of (POSIX path of file_)
       end repeat
       do script "for f in" &amp; filesString &amp; "; do  
    base=$f  
    ffmpeg -y -i \"$base\" -c:v prores -profile:v 3 -pix_fmt yuv422p10le -vf \"ass=${base%.*}.ass\" -c:a copy \"${base%.*}_sub.mov\";
    done"
       end tell
       return input
    end run

    Would it be possible to automatically match the output file and it’s codec to the input file ?
    We use a lot of different input formats due to a mixed windows / mac environment (Prores (mov), dnxhr (mxf/mov)) and I would like to not have 8-12 encoding options in the finder service menu’s of the workstations :).

    Thanks in advance !!