
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (99)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (8239)
-
FFMPEG Python - Convert Webp to MP4 file from Python Script
13 mai 2021, par Sar sinuais there any way to convert Webp file to MP4 in python script ?
i also know for running FFMPEG in python i should use below code


import subprocess
subprocess.call('ffmpeg.....',shell=True)



-
How to call ffmpeg with arguments from C using popen on Linux ?
14 décembre 2019, par Edoardo ColellaI tried to use
ffmpeg
concatenation withpopen
command in C but I get "No such file or directory". If I use Linux terminal with the same command it works.C code :
fp=popen("ffmpeg -i \"concat: audio/1.mp3|audio/2.mp3\" -acodec copyoutput.mp3", "r");
pclose(fp);Error in Linux shell :
audio/1.mp3|audio/2.mp3 No such file of directory found
What could be the problem ?
-
ffmpeg build with msys2 + VS2017 hang
20 décembre 2019, par lucky1928I am using windows10 + MSVC2017 Community + MSYS2 to build ffmpeg 4.0.1 with below steps :
- Start a Visual Studio 2017 "Developer Command Prompt"
-
cd into msys64 directory, and then invoke MSYS2
msys2_shell.cmd -msys2 -use-full-path
-
In MSYS2 shell, cd into ffmpeg build directory.
-
run ffmpeg config command :
./configure --prefix=./install --toolchain=msvc
After press enter with above command line,sounds like it hang there forever.
never print anything out and not exit as well.