
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (56)
-
Keeping control of your media in your hands
13 avril 2011, parThe 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, parPar 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, parDiogene 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_StudentI am working with
ffmpeg
and bash. The question that follows is more in relation to bash scripting variable assignment. I compiledffmpeg
from source using the guide. There are two ways to invokeffmpeg
: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 errorUsing 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 Schillerm 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 BurudI 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 ;