Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (103)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6996)

  • How to get ffmpeg to run on Heroku ? (libpulsecommon-15.99.so error)

    10 octobre 2023, par Fabien Snauwaert

    I'm trying to run ffmpeg on Heroku using an Aptfile (for use in a Flask app where I want to be able to perform audio conversions using pydub, which works fine locally.)

    


    # Aptfile
libsndfile1
libsndfile1-dev
ffmpeg
libvpx7
libpulse0
pulseaudio


    


    I've got these buildpacks :

    


    # Output from `heroku buildpacks`
1. heroku-community/apt
2. heroku/python


    


    And I keep getting this error with a simple heroku run 'ffmpeg --version' :

    


    


    ffmpeg : error while loading shared libraries : libpulsecommon-15.99.so : cannot open shared object file : No such file or directory

    


    


    This is on Heroku-22, but I was getting the same error on Heroku-20.

    


    Now I've spent hours on this and I'm still confused as to...

    


      

    1. What is libpulsecommon-15.99.so even part of ?
    2. 


    3. Is it a case of the library not being installed ? Or being installed but not found ?
    4. 


    


      

    • ls $HOME/.apt/usr/lib/x86_64-linux-gnu | grep libpulse (where $HOME is /app/) gives :
    • 


    


    libpulse-simple.so.0
libpulse-simple.so.0.1.1
libpulse.so.0
libpulse.so.0.24.1


    


      

    • echo $LD_LIBRARY_PATH returns /app/.heroku/vendor/lib:/app/.heroku/python/lib:/app/.apt/usr/lib/x86_64-linux-gnu:/app/.apt/usr/lib/i386-linux-gnu:/app/.apt/usr/lib:
    • 


    


    I'm lost and these are hours of my life I'm not going to get back 🤔😅

    



    


    I'm also wondering if there's much a point trying to get ffmpeg to work on Heroku this way : with the dependencies listed above (in the Aptfile), I'm already at 487 MB in slug size (out of a 300 MB soft limit, 500 MB hard limit), for a codebase under 1 MB.

    


    Any help welcome. I'll update the question as needed.

    


  • checkasm : hevc_pel : Check the full output in hevc_epel/hevc_qpel

    12 mars 2024, par Martin Storsjö
    checkasm : hevc_pel : Check the full output in hevc_epel/hevc_qpel
    

    Previously it only checked half the output in 8 bit per pixel mode,
    as the output actually is 16 bit elements here.

    Signed-off-by : J. Dekker <jdek@itanimul.li>

    • [DH] tests/checkasm/hevc_pel.c
  • h264 : fix AVDISCARD_NONKEY for some interlaced content

    24 juillet 2015, par John Högberg
    h264 : fix AVDISCARD_NONKEY for some interlaced content
    

    When skip_frame is set to _NONKEY the decoder skips everything except intra
    slices, which breaks frames that consist of an intra field together with any
    other field type ; half the frame becomes garbage. This patch fixes the issue by
    letting non-intra slices through if they’re part of a keyframe.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavcodec/h264.c