Recherche avancée

Médias (91)

Autres articles (59)

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

  • FFMPEG Wrong color space with ProRes 4444 [closed]

    6 février 2020, par Mirza Kadic

    I’m unable to convert a video with ffmpeg in codec ProRes 4444 without color shift (something to do with colorspace). If I do quicktime png, color space stays the same, no problems with that.
    The only thing that fixes this is -vf colormatrix=bt601:bt709, but then I loose alpha channel, which I need of course.
    Any help would be appreciated.

  • Revision 81708cc326 : Convert g_frame_parallel_decoding to control interface Restore ABI compatibilit

    27 mars 2013, par John Koleszar

    Changed Paths : Modify /vp8/vp8_cx_iface.c Modify /vp9/vp9_cx_iface.c Modify /vpx/vp8cx.h Modify /vpx/vpx_encoder.h Modify /vpxenc.c Convert g_frame_parallel_decoding to control interface Restore ABI compatibility with the master branch. Change-Id : (...)

  • ffmpeg C program to stream ts file through network without changing AV codecs

    17 novembre 2017, par Dinkan

    I am trying to get a sample C source file as example which uses ffmpeg library APIs to stream a ts file as is without changing codec using rtp multicast

    ./ffmpeg -re -i test_av.ts -acodec copy -vcodec copy -f rtp_mpegts rtp ://237.255.5.3:5008

    edit :
    I am looking for sample C program(s) which could do something close the command I mentioned. I can modify & make required changes if it is somewhat close to what I am trying to achieve. I tried modifying the muxing.c in the doc, however didn’t get how to copy codecs & stream through network using rtp multicast.