
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (80)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (9293)
-
PHP FFmpeg symfony bundle
20 octobre 2017, par user8693894i want to reproduce this command with https://github.com/PHP-FFMpeg/PHP-FFMpeg bundle. I dont see anything in documentation to create video from images, is it possible ?
ffmpeg -r 60 -f image2 -s 1920x1080 -i pic%04d.png -vcodec libx264 -crf 25 -pix_fmt yuv420p test.mp4
-
Is it possible to bundle something like ffmpeg into a node app ?
17 novembre 2020, par Bailey BrightmanCurrently, I'm using node to create a script to ensure that files meet our standards and one requirement is to ensure that audio files don't exceed a maximum loudness. For this I'm using
ffmpeg
andchild_proccesses
exec function. The problem though would be that this would require every user to install and configureffmpeg
on their machines. Is there any way to bundleffmpeg
with the app ?

-
How can I bundle ffmpeg in an Electron application
14 janvier 2024, par jshbrnttI'm building an Electron application starting from the
electron-webpack
boilerplate.


I found this node module
@ffmpeg-installer/ffmpeg
which installs a compatible precompiled binary into the/node_modules
directory then makes the path of that executable accessible through.


const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path




This works fine during development, but when I build the distributable and run it I get an error when attempting to spawn a child process with that path. Presumably, because the path does not point at the binary.



The path is set to the following when running the distributable.



/Users/me/project/dist/mac/AppName.app/Contents/Resources/app.asar/node_modules/@ffmpeg-installer/darwin-x64/ffmpeg




However, when looking in the
AppName.app
package contents I find the binary in the following path.


/Users/me/project/dist/mac/AppName.app/Contents/Resources/app.asar.unpacked/node_modules/@ffmpeg-installer/darwin-x64/ffmpeg




How should I include binary dependencies in an Electron application using
electron-webpack
andelectron-builder
?