Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (94)

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

  • avformat/mxfdec : export operational pattern UL as file metadata

    2 avril 2019, par Marton Balint
    avformat/mxfdec : export operational pattern UL as file metadata
    

    Can be useful for API users as ffmpeg/libavformat can't properly support some
    operational patterns.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxfdec.c
    • [DH] tests/ref/fate/mxf-probe-d10
    • [DH] tests/ref/fate/mxf-probe-dnxhd
    • [DH] tests/ref/fate/mxf-probe-dv25
  • How to iterate over a certain pattern of file names to use it on FFMPEG and PowerShell

    26 novembre 2019, par Francisco Laferrière

    I’m fairly inexperienced with PowerShell and I use it in certain occasions when I need to have total control of the conversion needed.
    So, I am facing a problem where I have a collection of 20 videos. All share the same number pattern from 1300 to 1319, and I want to convert the whole collection of "MOV" files into "MP4" files using this command :
    ffmpeg -i my-video-1300.mov -vcodec h264 -acodec mp2 my-video-1300.mp4

    Is there a way to use a Regular Expression, wildcard, or whatever name is given to simply create a single line conversion command.
    My idea of what it "should look like" is :
    ffmpeg -i my-video-13[00-19].mov -vcodec h264 -acodec mp2 my-video-13[00-19].mp4

    Of course this last line doesn’t work, but I would like to learn the correct way of doing it.
    Thanks.

  • ffmpeg set filename pattern using python subprocess

    29 janvier 2020, par bumbumpaw

    When running on command line, i use this code :

    ffmpeg -i video-frame-%06d.png -c:v libx264 -vf "fps=25,format=yuv420p" out.mp4

    But im trying to run it inside python script,and Im getting no such file or directory error and I think because of the formatting type for the image filename numerals -%06d

    How can I concatenate or use the same file pattern I run in command line to use it in my python script

    subprocess.Popen(['ffmpeg -i dir/video-frame-%06d.png -c:v libx264 -vf "fps=25,format=yuv420p" out.mp4', shell=True])

    the sample image filename inside the folder are :

    1. video-frame-00001.png
    2. video-frame-00002.png
    3. video-frame-00003.png