Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5712)

  • ffmpeg keyframe extraction in Windows

    6 avril 2012, par Pen Watson

    I had downloaded ffmpeg from this site : http://www.videohelp.com/tools/ffmpeg.

    Can someone tell me how to extract keyframes from an flv, mp3 or mp4 video ?

    I tried this command that I found on the net :

    ffmpeg -i Wildlife.wmv Desktop/img_%05d.jpeg

    I got the error

    could not open file : Desktop/img_%05.

    Thank you.

  • trying to include ffmpeg in angular electron application - build fails on require()

    3 mai 2023, par Blair Holmes

    I have found a lot of resources for adding ffmpeg to my windows desktop application built with electron from my angular web app but I can't seem to get my project to build when I try and run it.

    


    this is a pretty straight forward tutorial here : https://alexandercleasby.dev/blog/use-ffmpeg-electron

    


    My problem comes in the require statements or when I try to use the modules via import, whenever I try to access the imported modules.

    


    I get errors like this :

    


    


    Error : ./node_modules/ffprobe-static/index.js Module not found : Error :
Can't resolve 'os' in
'C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\node_modules\ffprobe-static'
resolve 'os' in
'C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\node_modules\ffprobe-static'
Parsed request is a module using description file :
C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\node_modules\ffprobe-static\package.json
(relative path : .)
Field 'browser' doesn't contain a valid alias configuration
resolve as module
looking for modules in C :/Users/MyUser/source/repos/my-app/my-app-angular-desktop
using description file : C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\package.json
(relative path : .)
Field 'browser' doesn't contain a valid alias configuration
using description file : C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\package.json
(relative path : ./os)
no extension
Field 'browser' doesn't contain a valid alias configuration
C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\os doesn't
exist

    


    


    Should I be trying to build with webpack directly instead of ng build ? I have never done that with an angular application so I"m not sure what steps I'd need to take.

    


    I'm currently on angluar 11 with webpack 4.44.2.

    


  • ffmpeg scan dir for mp3 create videos

    11 septembre 2018, par Peter Friedlander

    I have hundreds of MP3 and a still image. I want FFMPEG to scan this directory finding every mp3 and apply the sill image to the length of the mp3 and output a mp4 video file with the same name.
    I have the following which is good for what I need but it only does one file not a whole directory

    ffmpeg -loop 1 -i /Users/tcok/Desktop/still.png -i /Users/tcok/Desktop/still.mp3 -c:a copy -c:v libx264 -shortest out.mp4

    What do I need to do in order to get this so it will work with a directory of MP3 files ?