
Recherche avancée
Autres articles (112)
-
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 (...) -
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (15571)
-
SOLVED : How to start CMD and execute command in current folder with a batch file
22 mai 2024, par pzych0p4thI have this command that I run via cmd in a folder and it executes without problems :


for %i in (*) do ffmpeg -y -i "%i" -vcodec copy -acodec copy -map 0:v -map 0:a "%i.mp4"


Now I want to create a batch file that I can just open and it will execute this command in the current folder.
However for the life of me I cannot get anything to work.
Ive tried googling the answer and tried lots of answers from here also, but it seems my knowledge is lacking a bit.
If anyone can give any tips that would be appreciated, thanks.
I apologize beforehand if something is blatantly obvious, lmao.


-
How to start CMD and execute command in current folder with a batch file [closed]
23 mai 2024, par pzych0p4thI have this command that I run via cmd in a folder and it executes without problems :


for %i in (*) do ffmpeg -y -i "%i" -vcodec copy -acodec copy -map 0:v -map 0:a "%i.mp4"


Now I want to create a batch file that I can just open and it will execute this command in the current folder.
However for the life of me I cannot get anything to work.
Ive tried googling the answer and tried lots of answers from here also, but it seems my knowledge is lacking a bit.
If anyone can give any tips that would be appreciated, thanks.
I apologize beforehand if something is blatantly obvious, lmao.


-
How do I get FFMPEG Progress in order to create a progress bar ?
18 mai 2012, par polandeerI'm trying to create a simple GUI for ffmpeg but am having problems getting the progress of a command. I'm using PySide as the GUI toolkit and I'm also using python3. I'm using QProcess to run the command and would just like to be able to create a progress bar. The code can be found here : https://github.com/stephenmac7/ffpy/blob/master/ffpy.py
Also, I'd like to be able to use the statusbar of the main window. Thank you.
EDIT : Preferably I'd like to use QProgressDialog : http://www.pyside.org/docs/pyside/PySide/QtGui/QProgressDialog.html