
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (111)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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 (...)
Sur d’autres sites (5913)
-
How to execute commands on a bat file from c++
2 avril 2015, par AK47I’m working in a c++ project and I need to call ffmpeg command prompt(ff-promt) from my c++ code and execute commands on that bat command line. I have already opened the window. but not functioning the command running on that bat window. Can anyone please guide me how to do it.
for opening I have used following commandFILE *bat = _popen("ffmpeg-2.5.2-win64-static\\ff-prompt", "w");
I used following command to write the command on that and enter
fprintf(bat, "ffmpeg -i Sample.avi -vn -ar 44100 -ac 2 -ab 192k -f mp3 Sample.mp3\r");
please guide me soon. Thanks
-
Progress bar in VB 6.0 from Transcoding process in FFMPEG
1er septembre 2022, par Ramses1974firts excuse me for my English it`s super Freak. Sorry



I have a big problem , i need finish my applicatión in VB6.0 for a test in my High Schooll and i can`t find the solution, My app open a FFmpeg.EXE file which open a cmd window Prompt and start a trascoding process, i need link the last line generated into the Prompt of the CMD window (Or top Bottom) , in this line exists Values what change , in this trascoding process the result are bit Rates , which fluctuates acording to others var. 
The idea it´s what into the form of my app i can read this line in real time to bulid a progress bar (File Size/Bitrate average)=time to process.



Can you help me. Thanks for the answer....


-
FFmpeg concat Access Denied
3 mai 2016, par T. WilWhen I try to use ffmpeg from a Perl script to join 2 mp4 videos the result video cannot be created (error msg : Access is Denied). I made sure that the directory is correct and the same command runs perfectly when I type it in command prompt. But the program doesn’t seem to have permission ? I run the command prompt as admin and
ffmpeg.exe
is set to run as admin already. What could be the problem ?The commands I used are :
echo file '$inSpec1' > concat.txt
echo file '$inSpec2' >> concat.txt
ffmpeg -f concat -i concat.txt -c copy out.mp4Where
$inSpec
is files to concat.