Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (72)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • avcodec/cbs_h266 : Fix regression in DVB clip introduced by 93281630a71c06642adfebebb0...

    10 novembre 2024, par Nuo Mi
    avcodec/cbs_h266 : Fix regression in DVB clip introduced by 93281630a71c06642adfebebb0d4b105a4e02e91
    

    This commit introduced a regression to VVC_HDR_UHDTV1_OpenGOP_3840x2160_50fps_HLG10_mosaic.ts.

    Root Cause :
    The AV_CEIL_RSHIFT(a, b) macro uses bit tricks that work only when -a is a negative value.
    However, due to integer promotion rules, this behavior does not extend to the unsigned int type.

    See "6.3.1.1 Boolean, characters, and integers" in the "ISO/IEC 9899" for details.

    Reported-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/cbs_h266_syntax_template.c
  • keyframe frequency of four seconds or less error when trying to stream a VOD file to ant media server

    24 janvier 2023, par Usama

    I am trying to stream a VOD file to Youtube using ant media server. I have uploaded the file to AMS and added the RTMP url but after starting the broadcast I am getting an error from YouTube saying "Please use a keyframe frequency of four seconds or less. Currently, keyframes are not being sent often enough, which can cause buffering. The current keyframe frequency is 6.8 seconds. Note that ingestion errors can cause incorrect GOP (group of pictures) sizes."&#xA;How do I configure the keyframe frequency for my file

    &#xA;

  • Easiest way to convert images to mp4 with FFMPEG

    3 octobre 2017, par sql_newbie_developper

    I will try to explain my situation : I know that FFMPEG is the best tool to work with PHP to have transcode operations. I’m in a Windows environnement and I have PHP 7.

    What I need is : with a php file, to take all pictures in the folder (1.png ; 2.png) etc and then process with FFMPEG to create a MP4 video

    I know there is a lot of documentation on the Web about PHP, FFMPEG, PHP-FFMPEG but I don’t know the easiest way to implement what I want. I also know that PHP needs FFMPEG binaries to work (which is logical). But I’m lost in the procedure and the way to do it.

    Is it possible with the exec function ?

    exec("PATH IN THE PROJECT OF EXE -f image2 -i /home/phedra/imgs/image/img%03d.png -r 12 -s 610x489 /home/phedra/imgs/video/out.avi", $out);

    Do I absolutely need PHP-FFMPEG ?