Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (61)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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" (...)

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

  • avfilter/aeval : trim last frame’s number of samples to match requested duration

    24 février 2017, par Paul B Mahol
    avfilter/aeval : trim last frame’s number of samples to match requested duration
    

    Fixes #6181.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/aeval.c
    • [DH] tests/ref/fate/filter-hls
    • [DH] tests/ref/fate/filter-hls-append
  • 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
  • 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 !!