
Recherche avancée
Autres articles (52)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...)
Sur d’autres sites (7602)
-
FFMPEG Stdout Line
23 janvier 2023, par ai manifestI'm just wondering why Google Colab doesn't show FFMPEG's STDOUT line, showing the frame progress, fps, duration, time elapsed, etc. Jupyter notebooks and jupyter lab shows it, so I'm not sure why colab doens't. Thanks in advance.


When running the ffmpeg command, (!ffmpeg -i input.mp4 output.mp4), there is no stdout line in google colab, but if run in jupyter notebooks, the stdout lines show. Just curious why this is.


-
Add diffrent animation for diffrent frame in video using ffmpeg android
13 juin 2016, par Sachin SutharI am trying to apply animations for the particular video frame but hereby I’m not seeing that video frame by which I have to apply the animation. I only need fade in and fade out frame and display it as slide show video. Do you have any idea about this ?
-
what is ffmpeg exit code 2 ? and also output error array is empty and not working in php
14 juin 2019, par Mehdi ZamaniI use ffmpeg to convert bitrate to 128 but not working in php
exec("ffmpeg -i input.mp3 -codec:a libmp3lame -b:a 128k output().mp3 2>&1",
$output, $exit_code);
if ($exit_code!= 0) {
$data['message'][] = "Error";
}
print_r($output);
print_r($exit_code);
exit;After running this code show error code 2.
The output is an empty array and also exit_code is 2 and not create output.mp3 file.I already study How can I find out what this ffmpeg error code means ? but this isn’t my problem and don’t explain error code 2 or error code 2 is not defined. My problem is dont show any error and error message is empty just exit_code show 2 that means is some error happened.