
Recherche avancée
Autres articles (51)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccé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 2011Vous 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, parTo 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ö -
How to get ffmpeg to run on Heroku ? (libpulsecommon-15.99.so error)
10 octobre 2023, par Fabien SnauwaertI'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...


- 

- What is
libpulsecommon-15.99.so
even part of ? - Is it a case of the library not being installed ? Or being installed but not found ?






- 

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.


- What is
-
ffplay - change playback speed without re-encoding
2 novembre 2016, par Timothy TanI 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 ?