Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (56)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

Sur d’autres sites (3426)

  • 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.
  • Updated home demo/docs

    20 mai 2010, par Scott Schiller

    m demo/index.css m doc/getstarted/index.html m doc/index.html m index.html Updated home demo/docs

  • how to Extract Audio from video with spring boot java in linux or windows system with ffmpeg coding part need guidance

    2 décembre 2022, par Makarand Burud

    I got this command but don't know the how to configure it for project on command line ?

    


    String[] command = "-y", "-i", filename, "-vn",
"-ar", "44100", "-ac", "2", "-b:a", "256k", "-f", "mp3" + fileStorageLocation ;