
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (73)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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.
Sur d’autres sites (8988)
-
Need to get level of audio signal in dbfs/lufs during playback with libmpv
11 avril 2023, par NullUserExploring the possibility of moving the video player from libvlc to libmpv, I came across a problem - I can not find a way to get the value of the audio signal level for each video frame (in dbfs / lufs). This is necessary to display the volume level during video playback. But libvlc and ffme have similar mechanisms.


For example, ffme has the ability to get raw audio data for further processing before outputting to an audio device. You can bind to this event (Unosquare.FFME.MediaElement.RenderingAudio http://unosquare.github.io/ffmediaelement/api/Unosquare.FFME.MediaElement.html#Unosquare_FFME_MediaElement_RenderingAudio) which carries RenderingAudioEventArgs, which has a method that allows get to this data (GetBufferData() http://unosquare.github.io/ffmediaelement/api/Unosquare.FFME.Common.RenderingAudioEventArgs.html#Unosquare_FFME_Common_RenderingAudioEventArgs_GetBufferData) which we can read and process. Libvlc can perform similar operations.


But I cannot find such functionality in libmpv. Does anyone have any ideas how to solve this issue ?


P.S. It is planned to use mpv.net (https://github.com/hudec117/Mpv.NET-lib-/blob/master/src/Mpv.NET) for the move. This SDK has the ability to call ffmpeg for video and audio processing, maybe anyone have any idea how to use ffmpeg to solve this problem ?


-
Need to get level of audio signal in dbfs/lufs during playback with libmpv
12 avril 2023, par NullUserExploring the possibility of moving the video player from libvlc to libmpv, I came across a problem - I can not find a way to get the value of the audio signal level for each video frame (in dbfs / lufs). This is necessary to display the volume level during video playback. But libvlc and ffme have similar mechanisms.


For example, ffme has the ability to get raw audio data for further processing before outputting to an audio device. You can bind to this event (Unosquare.FFME.MediaElement.RenderingAudio http://unosquare.github.io/ffmediaelement/api/Unosquare.FFME.MediaElement.html#Unosquare_FFME_MediaElement_RenderingAudio) which carries RenderingAudioEventArgs, which has a method that allows get to this data (GetBufferData() http://unosquare.github.io/ffmediaelement/api/Unosquare.FFME.Common.RenderingAudioEventArgs.html#Unosquare_FFME_Common_RenderingAudioEventArgs_GetBufferData) which we can read and process. Libvlc can perform similar operations.


But I cannot find such functionality in libmpv. Does anyone have any ideas how to solve this issue ?


P.S. It is planned to use mpv.net (https://github.com/hudec117/Mpv.NET-lib-/blob/master/src/Mpv.NET) for the move. This SDK has the ability to call ffmpeg for video and audio processing, maybe anyone have any idea how to use ffmpeg to solve this problem ?


-
How can I avoid the 'ffmpeg was killed with signal SIGSEGV' error with fluent-ffmpeg on my Ubuntu server ? [closed]
30 mai 2023, par golden llamaffmpeg was killed with signal SIGSEGV (using fluent-ffmpeg in nodejs on ubuntu)


I am expecting ffmpeg to take a provided url and timestamps, then trim the video down. Once that happens I want it to output the video to the same directory as the code so my other code can work with it !


problem is that on .saveToFile I get the

ffmpeg was killed with signal SIGSEGV

error. Im running an ubuntu server on a local machine on my local network.

ffmpeg() .input(url) .outputOptions('-ss', timeSTART, '-to', timeEND) .saveToFile(vidID) .on('progress', (progress) => { if (progress.percent) { // console.log(process.memoryUsage.toString()); console.log(`Processing: ${Math.floor(progress.percent)}% done`); } })