Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (64)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Use, discuss, criticize

    13 avril 2011, par

    Talk 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 (9005)

  • Install ffmpeg with applescript

    2 février 2020, par andy stumpf

    I’m trying to create an applescript that installs ffmpeg. I have two issues.

    • I want to install Xcode, homebrew, ffmpeg, node, grant permissions, and ffmpeg-progressbar-cli one at a time. Not all at once but in that order. ffmpeg is dependant on xcode so it needs to wait before xcode is done installing.
    • The command for homebrew requires " which applescript makes me change to a ' before I can run it but in this case it doesn’t work.

    Here is the script I have so far.

    tell application "Terminal"
       do script "xcode-select --install && ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" && brew install ffmpeg && brew install node && sudo chown -R $(whoami) /usr/local/bin /usr/local/etc && npm install --global ffmpeg-progressbar-cli"
       activate
    end tell

    I tried this and it doesn’t seem to work as intended.

    tell application "Terminal"
           do script "sudo chown -R $(whoami) /usr/local/bin /usr/local/etc && xcode-select --install"
           display dialog "Select OK once Xcode has installed" buttons {"OK"} default button 1
           do script "ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)""
           display dialog "Select OK once Homebrew has installed" buttons {"OK"} default button 1
           do script "brew install ffmpeg"
           display dialog "Select OK once ffmpeg has installed" buttons {"OK"} default button 1
           do script "brew install node"
           display dialog "Select OK once node has installed" buttons {"OK"} default button 1
           do script "npm install --global ffmpeg-progressbar-cli"
           display dialog "Select OK once ffmpeg-bar has installed" buttons {"OK"} default button 1
           activate
       end tell

    For the second issue it needs to be

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    but applescript makes me change it to

    ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)'

    with single quote which doesn’t work.

    Help and suggestions apreciated !

  • Revision 115849 : Depuis [115027] il était devenu impossible de ne pas remplir les ...

    2 juillet 2019, par rastapopoulos@… — Log

    Depuis [115027] il était devenu impossible de ne pas remplir les dates, même si on n’avait jamais dit que c’était obligatoire. Le test d’obligation se fait dans Saisies en amont, mais si ce n’est pas le cas, on DOIT pouvoir laisser les champs vides. On change donc pour ne faire une erreur que si la date est vide alors qu’on a remplit l’heure. Si c’est le contraire, on considère que l’heure est 00:00. Et si tout est vide, ya rien du tout, puisqu’on n’a jamais demandé obligatoire, donc ça reste vide et ça sera possiblement normalisé avec tout à zéro.

  • configure.ac : check for sys/auxv.h before defining FLAC__CPU_PPC

    19 septembre 2019, par Peter Seiderer
    configure.ac : check for sys/auxv.h before defining FLAC__CPU_PPC
    

    Signed-off-by : Peter Seiderer <ps.report@gmx.net>
    — -
    Note : One of the buildroot autobuilder provided powerpc toolchains
    seem to not provide the sys/auxv.h header file, resulting in a
    compile failure (see [1] for details).

    [1] http://lists.busybox.net/pipermail/buildroot/2019-September/259732.html

    • [DH] configure.ac