
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (43)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (4700)
-
Converting video for electron [on hold]
24 novembre 2016, par user2960896I am currently working on a typescript-electron app that has a media component which should be able to play videos.
My electron app is a client that will play video located on a Java backend server. Problem is that the electron native player cannot play .mp4 or .avi formats.
What I aim to do is convert the videos to a electron friendly format. Problem is that I am not sure of the best approach for this task. I would use ffmpeg to convert video directly on the server, but not sure if this is the best solution.
Can somebody please give me some advice on how to tackle this ?
-
How to bundle a precompiled binary into an electron app
1er mai 2023, par AiotexI'm developing an Electron app that uses discord/opus which requires ffmpeg to work. I've downloaded a precompiled binary of FFmpeg for my operating system windoes and I want to bundle it with my Electron app.


I've already tried using npm packages like ffmpeg-static and also tried many solutations such as this one : https://github.com/ganeshrvel/tutorial-electron-bundle-binaries, but I can't get the package to use the binaries I download and instead I just get this error : "Uncaught Error : FFmpeg/avconv not found !"


I'm not sure how to bundle the precompiled binary with my Electron app. Do I need to use any specific build tools or can I simply copy the binary into the app's bin folder ? How do I access the FFmpeg binary from my Electron app ?


Can someone provide step-by-step instructions or point me to a tutorial that explains how to bundle a precompiled binary of FFmpeg into an Electron app ?


-
Electron App & FFMpeg - Library not loaded
12 mars 2016, par George HuberI’ve recently upgraded Electron to v0.37, and upon trying to start my app, I’m getting an error of the following.
dyld: Library not loaded: /usr/local/lib/libffmpeg.dylib
Referenced from: /usr/local/lib/node_modules/electron-prebuilt/dist/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
Reason: image not foundI have ffmpeg installed on my machine via homebrew, which I installed with
brew install ffmpeg
. I’ve tried uninstalling ffmpeg and reinstalling, but haven’t had any luck.I’ve noticed in more recent versions of Electron, since v0.36.8 they’ve ’Link with ffmpeg dynamically’ according to the changelog.
I should note, I’m using ffmpeg in my electron app, and specifically, im utilizing the Fluent FFMpeg node library (https://www.npmjs.com/package/fluent-ffmpeg).
Has anyone come across this same issue ? Any idea on a fix ?