Recherche avancée

Médias (91)

Autres articles (66)

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

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

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

Sur d’autres sites (5701)

  • Emulate radio stream metadata

    17 juin 2018, par IllidanS4

    I work with an application that can connect to an audio stream via HTTP and play the audio. It can also connect to SHOUTcast and Icecast radios and play the streams, but for some radios, when the format is supported, it can read special metadata as well, like the name of the current song.

    I would like to use ffmpeg to produce an MP3 stream that contains the specific metadata this application understands. I know it is probably something specific to SHOUTcast or Icecast and not to the format itself, but I don’t know what exactly it is that the application can decode.

    If ffmpeg cannot produce such a stream (possibly because it is part of the HTTP metadata), I would welcome any details on how the metadata is encoded and how can I generate it (in PHP for example).

  • Discord FFmpegPCMAudio bad audio quality

    17 mars 2021, par Yareyare

    I'm writing a discord music bot in python and encountered some audio quality issue. When I use discord.FFmpegPCMAudio("song.mp3") to play a mp3 file downloaded using youtube_dl in a channel, there're sometimes intermittent background noice and it sounds laggy and broken.
    
I tried to pass {'vbr':5} as an argument, and also tried discord.FFmpegOpusAudio, but doesn't do any better. The file itself is not corrupted, since it sounds normal when I play it using another app. Internet connection also isn't the cause, as each time I play the same file, the exact audio quality issue occurs at the exact same time.
    
I'm quite stuck right now. What other factors may caused this audio quality loss ?

    


  • lavfi : add opencl tonemap filter

    19 juin 2018, par Ruiling Song
    lavfi : add opencl tonemap filter
    

    This filter does HDR(HDR10/HLG) to SDR conversion with tone-mapping.

    An example command to use this filter with vaapi codecs :
    FFMPEG -init_hw_device vaapi=va :/dev/dri/renderD128 -init_hw_device \
    opencl=ocl@va -hwaccel vaapi -hwaccel_device va -hwaccel_output_format \
    vaapi -i INPUT -filter_hw_device ocl -filter_complex \
    '[0:v]hwmap,tonemap_opencl=t=bt2020:tonemap=linear:format=p010[x1] ; \
    [x1]hwmap=derive_device=vaapi:reverse=1' -c:v hevc_vaapi -profile 2 OUTPUT

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] configure
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/colorspace.c
    • [DH] libavfilter/colorspace.h
    • [DH] libavfilter/opencl/colorspace_common.cl
    • [DH] libavfilter/opencl/tonemap.cl
    • [DH] libavfilter/opencl_source.h
    • [DH] libavfilter/vf_tonemap_opencl.c