Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (7732)

  • Assigning variable a home file path returns warning

    28 mai 2015, par Code_Ed_Student

    I am working with ffmpeg and bash. The question that follows is more in relation to bash scripting variable assignment. I compiled ffmpeg from source using the guide. There are two ways to invoke ffmpeg : cd ~/bin && ./ffmpeg -i ~/input.mp4 ~/videos/output.mkv or /home/yourusername/bin/ffmpeg ... . However in my script I am trying to set path to a variable and it returns the error Using a password on the command line interface can be insecure. How can I properly call the program without this warning ?

    #!/bin/bash/
    ffprobe_path="/home/yourusername/bin/ffprobe"

    while IFS== read field value; do
       details[$field]="$value"
    done < <($ffprobe_path -i "$file" -show_format -v quiet | grep '.=.')

    echo "${details[duration]}"

    Result

    Warning: Using a password on the command line interface can be insecure.
  • configure : fall back to using full path if src is a directory

    26 janvier 2016, par Andreas Cadhalpun
    configure : fall back to using full path if src is a directory
    

    Or when building in-tree.
    Also don’t try to remove src on distclean in these cases.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] Makefile
    • [DH] configure
  • avformat/http: escape unsafe URL path in HTTP request

    8 février 2020, par Marton Balint
    avformat/http: escape unsafe URL path in HTTP request
    

    This avoids generating invalid HTTP requests if the path contains space or
    other special characters.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/http.c