Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (57)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (6474)

  • How to to integrate 'scale2ref' into this ffmpeg code ? [duplicate]

    9 août 2021, par Dwell

    I have this code :

    


    ffmpeg -y -i "$file" -i watermark.png -filter_complex \ "[0:v][1:v]overlay=30:main_h-overlay_h:enable=between(t,30,35)" "out/$file"

    


    And I want to add scale2ref here so that the size of the watermark is reduced to a maximum of 30% of the width of the video.
I've tried many options, but none of them work.

    


  • Hello i need a some istructions to use ffmpeg, I would like a code to get media file info

    16 juillet 2014, par user3547175

    I want to start by saying that i don’t know how to use FFMPEG in C#. I have a program that reads the information of a media file, I use this code about resolution, bitrate

    var player = new WindowsMediaPlayer();
    var clip = player.newMedia(file.FullName);
    lblLenght_.Text = (TimeSpan.FromSeconds(clip.duration)).ToString();      



    ShellFile shellFile = ShellFile.FromFilePath(file.FullName);
    lblFPS_.Text = (shellFile.Properties.System.Video.FrameRate.Value / 1000).ToString();

    lblHeight_.Text = shellFile.Properties.System.Video.FrameHeight.Value.ToString() + " px";
    lblWidth_.Text = shellFile.Properties.System.Video.FrameWidth.Value.ToString() + " px";
    lblResolution_.Text = shellFile.Properties.System.Video.FrameWidth.Value.ToString() + "x" + shellFile.Properties.System.Video.FrameHeight.Value.ToString() + " px";
    blBitrate_.Text = (shellFile.Properties.System.Video.TotalBitrate.Value / 1000).ToString() + " kb/s";

    but the problem is that ShellFile supports only a few formats, so I found some FFMPEG uses but I don’t know how to work with it. Can someone post the solution or some link to learn how to use it about my problem ?

  • ffmpeg : move non monotone prevention code down

    3 mai 2013, par Michael Niedermayer
    ffmpeg : move non monotone prevention code down
    

    This moves the code to after the bitstream filters

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg.c