Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (59)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8431)

  • Why does HTML5 video with very large mp4 (with +faststart, ie metadata at beginning), take ages to load ?

    8 septembre 2015, par Tom Jenkinson

    The video is rendered with ffmpeg with the "faststart" flag added meaning the metadata should be at the start of the file, and the server appears to be handling partial content requests correctly, so why does it need to have downloaded so much of the video before the player becomes enabled and can play the video ? I am testing it in Google Chrome.

    Once the player becomes enabled I can seek around to various points in the video pretty instantly and see the new partial content requests being made.

    Here is a link to the video : http://iptv.la1tv.co.uk/unibrass.mp4

    Here is a jsbin with the video tag : https://jsbin.com/rahewidoru . It takes a few minutes but does work after it loads.

    Any suggestions ?

    I realise there are other methods like HLS and dash which use chunks, but I would like to know why it isn’t working this way because I can’t find anywhere that provides a reason as to why it doesn’t work well.

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