
Recherche avancée
Autres articles (40)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (4835)
-
Anomalie #3051 (Fermé) : Perte de config des documents lors de màj 2.1.23 vers 3.0.11
22 septembre 2013, par Suske -Donc pour la perte des configs j’ai corrigé : cest bein dun aux numéros de schémas de base de la mediathque spip 2.1 qui ont commencé à chevaucher ceux de medias pour spip 3.0
Par contre, le config sur les docs (pas de docs joints aux articles par défaut) remonte bien à SPIP1.9.2b et je n’ai pas de solution siple et propre. Un autre ticket ?
-
Anomalie #2643 : Supprimer le texte du alt sur les puces de retour à la ligne pour faciliter les c...
23 octobre 2014, par b bOn a tenté le coup sans succès avec la propriété user-select cf https://developer.mozilla.org/en-US/docs/Web/CSS/user-select
-
Creating a batch file for ffmpeg to combine image sequence to mkv
13 août 2020, par EricI have been doing some work remastering some videos by converting them to image sequences, editing them, then converting them back to videos. To do the last step, I have been just using the command prompt with ffmpeg. My goal is to create a batch file that I can just put into the folder with my image sequence and run it rather than needing to do it through the command prompt manually.


Here is the command I've been running :

"C:\Program Files (x86)\ffmpeg\bin\ffmpeg.exe" -framerate 23.97 -i "%06d.png" -c:v copy "B:\output.mkv"


ffmpeg is located on my C drive, the image sequences are on my Z drive, but I generally move to that folder to run the command, and the images are always named with 6 digits (000000.png-######.png). The output file is created on the B drive.


I assumed that I could just add that command to a .bat file



"C:\Program Files (x86)\RipBot264v1.25.1\Tools\ffmpeg\bin\ffmpeg.exe" -framerate 23.97 -i "%06d.png" -c:v copy "B:\output.mkv"

pause



but I have not been able to get it to work. When I try to run it, I get an error that seems to be related to the name of the batch file itself :




Z :\S09E19"Z :\S09E19_Output.bat6d.png -c:v copy B :\output.mkv : Invalid argument




Any help on this would be greatly appreciated.