Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (51)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4752)

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

    &#xA;

    # Aptfile&#xA;libsndfile1&#xA;libsndfile1-dev&#xA;ffmpeg&#xA;libvpx7&#xA;libpulse0&#xA;pulseaudio&#xA;

    &#xA;

    I've got these buildpacks :

    &#xA;

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

    &#xA;

    And I keep getting this error with a simple heroku run &#x27;ffmpeg --version&#x27; :

    &#xA;

    &#xA;

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

    &#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

      &#xA;
    1. What is libpulsecommon-15.99.so even part of ?
    2. &#xA;

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

    &#xA;

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

    &#xA;

    libpulse-simple.so.0&#xA;libpulse-simple.so.0.1.1&#xA;libpulse.so.0&#xA;libpulse.so.0.24.1&#xA;

    &#xA;

      &#xA;
    • 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:
    • &#xA;

    &#xA;

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

    &#xA;


    &#xA;

    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.

    &#xA;

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

    &#xA;

  • ffplay - change playback speed without re-encoding

    2 novembre 2016, par Timothy Tan

    I have some .264 video files that I would like to view at half playback speed, without encoding them into a new file. I remember using ffplay to do this in the past, but it was some time ago, and I can’t seem to be able to do it now. From lots of searching, this is what is supposed to work :

    ffplay -f h264 -vf "setpts=2.0*PTS" filename.264

    However this does not seem to change the playback speed at all. If I try :

    ffplay -f h264 -filter:v "setpts=2.0*PTS" filename.264

    I get an error message saying ’Failed to set value ’setpts=2.0*PTS’ for option ’filter:v’ : Option not found’.

    I specifically remember being able to do this before but cannot find any information about this now. Converting the videos is not really an option because the files are finicky and often cause an error halfway through converting, corrupting the whole file.

    Is there a simple solution to this problem ? Am I typing one of the commands wrongly ?