Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (67)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6335)

  • MLT Framework Target GPU

    10 janvier 2024, par nooobeee

    I have a laptop with both an AMD iGPU and an AMD dedicated GPU and I'm using shotcut which apparently uses the MLT Framework. It seems like shotcut is using the iGPU for HW acceleration based on encoding times. I can specify a target device in ffmpeg using the "hwaccel_device" parameter and it appears that shotcut has an option for passing parameters to MLT.

    


    Is there a parameter that I can pass to MLT in order to specify the target gpu for ffmpeg to use ? I guess I'm looking for the MLT equivalent to ffmpeg's "-hwaccel_device /dev/dri/renderD129"

    


  • How to include font in FFMPEG command without using the fontfile option ?

    26 novembre 2020, par Avinash Modi

    I am using the following command to add watermark in my video using font TIMESNEWROMAN :

    


    ffmpeg -i input.webm -vf "drawtext=text='© Krishna':fontfile=C//:/Windows/Fonts/times.ttf:x=(main_w-text_w-10):y=(main_h-text_h-10):fontsize=32:fontcolor=black:box=1:boxcolor=white@0.5: boxborderw=5" -preset ultrafast output.mp4


    


    Now, I want to provide the font TIMESNEWROMAN or any other font instead of fontfile path. Is it possible to do that ?

    


  • c# - WAV file trimming and adding silence

    2 janvier 2017, par Piotr C

    I have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :

    1. Align second one in time by the time offset.
    2. Trim second one to match the length of the first one
    3. When there is nothing to trim, add silence to match the length of the first one.

      I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?