Recherche avancée

Médias (91)

Autres articles (33)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (5442)

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