
Recherche avancée
Autres articles (39)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Organiser par catégorie
17 mai 2013, parDans 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 (...)
Sur d’autres sites (4557)
-
Can't load audio files with librosa
19 août 2020, par rocksNwavesUnless I use one of
librosa
's native 'example' audio files which are in some format '.ogg', I cannot load audio.

Every github issue and SO answer says I need to install ffmpeg. I found a python package called
ffmpeg
and installed it into my virtual environment. I also found some sort of multi-purpose program calledffmpeg
and installed it onto my Windows machine, and added it's location to my PATH variable.

I still get the same warnings and errors that everyone else is getting :


c:\users\wesle\appdata\local\programs\python\python38\lib\site-packages\librosa\core\audio.py:162: UserWarning: PySoundFile failed. Trying audioread instead.
 warnings.warn("PySoundFile failed. Trying audioread instead.")
---------------------------------------------------------------------------
.
.
.

 115 # All backends failed!
--> 116 raise NoBackendError()



I can find no resolution for this problem despite the number of people asking for help on it.


-
avutil/pixfmt : improve definition of AVColorRange
18 septembre 2020, par Jan Ekströmavutil/pixfmt : improve definition of AVColorRange
As it was brought up that the current documentation leaves things
as specific to YCbCr only, ICtCp and RGB are now mentioned.
Additionally, the specifications on which these definitions of
narrow and full range are defined are mentioned.This way, the documentation of AVColorRange should now match how
most people seem to read interpret it at this point, and thus
flagging RGB AVFrames as full range is valid not only according to
common sense, but also the enum definition. -
Convert video after upload [duplicate]
15 novembre 2016, par BlackFayahThis question already has an answer here :
I am running a service where people can upload videos. Because of the large file sizes I would like to convert those videos after uploading.
I want it so that when the upload is done, a PHP script is called in which the video gets converted (using FFMPEG). When the conversion is done, the user receives a notification that the video is ready to use.
I am thinking of a separate PHP script that uses the path sent in POST. It will then call the FFMPEG line within shell_exec(). But how can I get it to run in the background and send a notification to the user when the process is done ?