Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (61)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (11132)

  • ffmpeg install on windows server 2003. for use in rails app

    15 septembre 2011, par sdk

    I have a rails application which uses ffmpeg for thumbnailing/duration/file format conversion of videos.
    Currently my rails app runs in ubuntu - where ffmpeg works great. But due to some client constraints , need to run rails app on windows.
    I tried looking out for some writeups, googling around some forums but could not get a comprehensive list of steps to run ffmpeg on windows.

    Any help/alternatives/links to ge it running would be of great help.

    Thanks in advance.

  • Adding a custom filter to FFmpeg

    16 juillet 2024, par Abhimanyu

    I am looking to configure and compile FFmpeg with custom filter.
custom filters are available on this git repository which is compiled with older ffmpeg version
https://github.com/numberwolf/FFmpeg-PlusPlus

    


    I am following the steps mentioned on the ffmpeg official website
https://github.com/FFmpeg/FFmpeg/blob/master/doc/writing_filters.txt

    


    I am getting warning plusglshader filter is unknown and same for all other filters

    


    Here are my steps :

    


    First, create your filter source files in the libavfilter directory :

    


    `libavfilter/vf_plusglshader.c
libavfilter/vf_pipglshader.c
libavfilter/vf_lutglshader.c
libavfilter/vf_fadeglshader.c`


    


    Update the FFmpeg build system by adding your new filter files to libavfilter/Makefile :

    


    I am getting following below steps

    


    First, create your filter source files in the libavfilter directory :

    


    `libavfilter/vf_plusglshader.c
libavfilter/vf_pipglshader.c
libavfilter/vf_lutglshader.c
libavfilter/vf_fadeglshader.c`


    


    Update the FFmpeg build system by adding your new filter files to libavfilter/Makefile :

    


    `OBJS-$(CONFIG_PLUSGLSHADER_FILTER)    += vf_plusglshader.o
OBJS-$(CONFIG_PIPGLSHADER_FILTER)     += vf_pipglshader.o
OBJS-$(CONFIG_LUTGLSHADER_FILTER)     += vf_lutglshader.o
OBJS-$(CONFIG_FADEGLSHADER_FILTER)    += vf_fadeglshader.o`


    


    In libavfilter/allfilters.c, add your filter declarations :

    


    `extern const AVFilter ff_vf_plusglshader;
extern const AVFilter ff_vf_pipglshader;
extern const AVFilter ff_vf_lutglshader;
extern const AVFilter ff_vf_fadeglshader;`


    


    In libavfilter/filter_list.c (not allfilters.c), add your filters to the filter_list array :

    


    `static const AVFilter * const filter_list[] = {
    // ... existing filters ...
    &ff_vf_plusglshader,
    &ff_vf_pipglshader,
    &ff_vf_lutglshader,
    &ff_vf_fadeglshader,
    NULL
};`


    


    In libavfilter/allfilters.c, add your filter declarations :

    


    `extern const AVFilter ff_vf_plusglshader;
extern const AVFilter ff_vf_pipglshader;
extern const AVFilter ff_vf_lutglshader;
extern const AVFilter ff_vf_fadeglshader;`


    


    In libavfilter/filter_list.c (not allfilters.c), add your filters to the filter_list array :

    


    `static const AVFilter * const filter_list[] = {
    // ... existing filters ...
    &ff_vf_plusglshader,
    &ff_vf_pipglshader,
    &ff_vf_lutglshader,
    &ff_vf_fadeglshader,
    NULL
};`


    


    `

    


  • Is there a FFMPEG C# Wrapper with multiple filters ?

    7 juin 2021, par AfricanMamba

    Does anyone happen to know if FFMPEG or any other sources has a wrapper that I can use in C#/.NET to run certain filters ? Filters that I am trying to run on different audio files in my program include silenceremove, silencedetect, volumedetect, and etc. I want to avoid using just the .exe file that I already have when implementing this in my program.

    


    I have looked through several forums and online resources and found one called MediaTookKit, but it lacks the filters that I am attempting to use. If anyone knows of one that already exists or can provide me with steps to make my own wrapper using certain FFMPEG filters, it would greatly help.