Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (74)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (15073)

  • avcodec/cbs_av1 : fix setting FrameWidth in frame_size_with_refs()

    24 août 2020, par James Almer
    avcodec/cbs_av1 : fix setting FrameWidth in frame_size_with_refs()
    

    Section 5.9.7 of the spec states

    UpscaledWidth = RefUpscaledWidth[ ref_frame_idx[ i ] ]
    FrameWidth = UpscaledWidth
    FrameHeight = RefFrameHeight[ ref_frame_idx[ i ] ]
    RenderWidth = RefRenderWidth[ ref_frame_idx[ i ] ]
    RenderHeight = RefRenderHeight[ ref_frame_idx[ i ] ]

    Meaning FrameWidth must not be set to RefFrameWidth[ ref_frame_idx[ i ] ]
    like we're currently doing.

    Reviewed-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_av1_syntax_template.c
  • Link ffmpeg to Pydub in Serverless layer

    15 mars 2021, par akai

    I'm using the Serverless framework to deploy an app on AWS. I have created a layer, defined as follows in serverless.yml :

    &#xA;

    layers:&#xA;  ffmpeg:&#xA;    path: layer&#xA;

    &#xA;

    I also excluded it from the main file bundle :

    &#xA;

    package:&#xA;  exclude:&#xA;    - layer/**&#xA;

    &#xA;

    and defined a lambda function :

    &#xA;

     cut_audio:&#xA;    layers:&#xA;      - {Ref: FfmpegLambdaLayer}&#xA;

    &#xA;

    In this function I use the Pydub library, which needs to access the ffmpeg layer. At the moment I have the following error FileNotFoundError: [Errno 2] No such file or directory: &#x27;ffprobe&#x27;, meaning I have to link ffmpeg as AudioSegment.converter(path)

    &#xA;

    How do I get the path of my layer ?

    &#xA;

    Edit : could I solve this by bundling both Pydub and ffmpeg in the layer ?

    &#xA;

    Edit 2 : the eziotedeschi/AWS-Lambda-Layer-Pydub github repository doesn't seem to help. I get the following error No module named &#x27;pydub&#x27;. I am using Python3.8 as runtime, that might be the issue.

    &#xA;

  • avcodec/v4l2_buffers : Fix infinite loop

    27 octobre 2019, par Andriy Gelman
    avcodec/v4l2_buffers : Fix infinite loop
    

    This part of the code counts the number of planes returned by the v4l2
    device for each queried capture/output buffer.
    When testing the GPU h264 encoder on Nvidia's Jetson Nano, this caused an
    infinite loop because avbuf->buf.length included some empty buffers (i.e.
    where avbuf->buf.m.planes[i].length = 0), meaning that the counter was
    never incremented and break was never reached.
    This is fixed in the commit by using a well defined iteration range.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/v4l2_buffers.c