Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (71)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8898)

  • movenc : use correct tag list for AVOutputFormat.codec_tag

    15 juin 2017, par John Stebbins
    movenc : use correct tag list for AVOutputFormat.codec_tag
    

    ff_mp4_obj_type contains the wrong type of tags for
    AVOutputFormat.codec_tag. AVOutputFormat.codec_tag is used to
    validate AVCodecParameters.codec_tag so needs to be the same
    type of tag.

    Creates new tag lists for mp4 and ismv. New tag lists support
    same list of codecs found in ff_mp4_obj_type. psp uses the same
    tag list as mp4 since these both use mp4_get_codec_tag to look up tags.

    • [DBH] libavformat/movenc.c
  • Add ken burn effect on video from list of images

    20 décembre 2015, par Hamza Khan

    I have created video from list of images using ffmpeg

    system("ffmpeg -framerate 1 -pattern_type glob -i '*.jpg' -c:v libx264 out.mp4")

    Now i want to add Ken burn effect, can i do it with ffmpeg or imagemagic or any command line tool on linux.

  • avfilter/vf_libplacebo : list AV_PIX_FMT_VULKAN first

    16 juin, par Niklas Haas
    avfilter/vf_libplacebo : list AV_PIX_FMT_VULKAN first
    

    Under normal circumstances, this change does not affect anything, as the vast
    majority of filters either support only vulkan or only software formats.
    However, when a filter supports both (such as vf_libplacebo itself, and
    possibly vf_scale in the future), linking together two such filter instances
    without an explicit format will default matching the input format, resulting
    in a redundant round trip through host RAM.

    This change bumps up AV_PIX_FMT_VULKAN to the first entry in the format list,
    ensuring that it gets preferred whenever possible.

    • [DH] libavfilter/vf_libplacebo.c