Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (12592)

  • Stop termux on battery low [closed]

    9 août 2022, par Wouter van Dam

    TL ;DR BELOW

    


    I have a second phone who is converting some mkv files through ffmpeg in termux. But the phone can't get enough charging power from the charger because it uses to much power. So it state is always charging even if it isn't charging. No I want to run in termux a script that hits a kill command when the battery is low. So that it doesn't corrupt my files when shutting down because it just cant survive the night with my battery capacity. Any ideas of achieving this ?

    


    TL ;DR
How to run a termux command or script async with a event or looping function so that it kills the process when battery power is low.

    


  • Anomalie #4361 (Nouveau) : Message d’erreurs divers sur PHP 7.2.19 sur nouvelle installation ou PH...

    13 juillet 2019, par Vincent ROBERT

    Sur Xampp avec Apache 2.4.39 (Win64) & PHP 7.2.19 - Chrome
    Sur une installation fraiche, sans aucun plugin activé autre que ceux pas défaut :

    Sur la page : http://localhost/news-test/ecrire/?exec=admin_plugin

    Warning : count() : Parameter must be an array or an object that implements Countable in C :\xampp\htdocs\news-test\plugins-dist\svp\inc\svp_actionner.php on line 704
    Warning : count() : Parameter must be an array or an object that implements Countable in C :\xampp\htdocs\news-test\plugins-dist\svp\inc\svp_actionner.php on line 713
    Warning : count() : Parameter must be an array or an object that implements Countable in C :\xampp\htdocs\news-test\plugins-dist\svp\inc\svp_actionner.php on line 753

    http://localhost/news-test/ecrire/?exec=configurer_contenu

    Warning : count() : Parameter must be an array or an object that implements Countable in C :\xampp\htdocs\news-test\ecrire\public\iterateur.php on line 284

    http://localhost/news-test/ecrire/?exec=configurer_forum

    Warning : count() : Parameter must be an array or an object that implements Countable in C :\xampp\htdocs\news-test\ecrire\public\iterateur.php on line 284

    *Sur une installation moins fraiche sur PHP Version 7.2.20 en ligne

    /ecrire/ ?exec=configurer_forum

    Warning : count() : Parameter must be an array or an object that implements Countable in /htdocs/ecrire/public/iterateur.php on line 284

  • Ffmpeg it's not setting the correct variable names and hence throwing Unable to choose format

    9 novembre 2024, par Miguel Arrieche

    I'm trying to automate the subtitle addition to a folder with some videos so I wrote the following script :

    


    forfiles /p "C:\Users\titos\Resilio_Sync\4K_Video_Downloader\videoprocess" /m *.mp4 /C "cmd /c set filename=@fname & ffmpeg -i @file -vf subtitles="C:\Users\titos\Resilio_Sync\4K_Video_Downloader\videoprocess\@fname.srt" -f mp4 "C:\Users\titos\Resilio_Sync\4K_Video_Downloader\donesubs\@fname_srt.mp4""


    


    However, the script is throwing me the following error for each video :

    


    [AVFormatContext @ 0000020c20220680] Unable to choose an output format for 'Der'; use a standard extension for the filename or specify the format manually.
[out#0 @ 0000020c20220580] Error initializing the muxer for Der: Invalid argument
Error opening output file Der.
Error opening output files: Invalid argument


    


    In this case, "Der" is the second word of the video's title (And it does the same with each video where it throws the error with the second word). So I think it might be due to the videos containing spaces and ffmpeg not parsing it correctly ? But why is the second word that it gets and not the first one in that case ? And more importantly, what could I do to fix this issue ?

    


    I've honestly found some other threads that discuss similar issues, but quite frankly I'm still too newbie to understand any of the answers in order to adapt it to my script lol. I appreciate your help, thanks a lot in advance :)