Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (50)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6972)

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

    


  • glreadpixels is slower than x11 based screenshot

    23 décembre 2013, par quartz

    I am working on an opengl based simulation application, in which I need to make multiple screenshots in a second. I have tried 2 ways of doing it in my application.
    1) use glreadpixels
    2) use x11 based screenshot. ex : ffmpeg -f x11grab -s 1024x768 -i :0.0 output.png

    I found that second solution is about 3 times faster than first one. I have expected the first solution to be faster. But in practice it is slower. I am curious why glreadpixels is slower ?

  • Moviepy : Mix multiple audio files

    14 octobre 2020, par soroushamdg

    I want to mix multiple audio files and export single audio file, to demonstrate, here's a example timeline ;

    


    audio1 : -----------------------------------------------------------------------

audio2 :      ===============

audio3 :                                   +++++++++++

audio4 :                                                         ************

audio5 :                                                     ~~~~~~~~~


    


    I have the delay times, like, audio2 should be played with 2 seconds delay after audio1 is played and etc.
How can I mix these AudioFileClip() ?