Recherche avancée

Médias (91)

Autres articles (106)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10910)

  • How to pass encrypted command to ffmpeg from Windows 10 ?

    25 juillet 2019, par gaamaa

    While we pass commandline to ffmpeg and run it from Windows, others could see those commandline from taskmanager.
    Sometimes the url and password are secret which to be hidden from others.
    How to overcome this ?

    I don’t know ffmpeg coders thought about it and done something for this already.
    If I know C++ or relevant coding, I could add a custom decryption code block inside ffmpeg and use my encryption application to pass the encrypted command line.
    I don’t even know how to compile ffmpeg because its a nightmare even for professionals. (Why so complicated steps to simple compilation of an exe ?)

    Usual command line :

    ffmpeg -i MySource -codec:v h264_nvenc -s:v 1920x1080 -ac 2 -ar 48000 ... xyz ... -r 25 -f mpegts "udp://224.2.2.1:1234?pkt_size=1316"

    My expected commad line line :

    ffmpeg 8B8E108D96EBCA39415889F19E644D3EFA00D35941F383E28A5ED5  9D3A72CF8952C79AF2DA035949525C2D34ADDE5B9479217F5E739B0C515CE
    20A1AE16120E22616
  • FFMPEG - How do I make a video stop scaling

    7 septembre 2020, par JunctionNinja

    I have a few videos which I merged and they are in a .mkv format, the output is MP4. Some of them are different resolutions and therefore the smaller ones upscale. How would I stop this ?

    


    I have tried to make it .mkv as the output and I still get the same error.
I don't know how to fix this, here's my ffmpeg.bat file.

    


    ffmpeg -f concat -safe 0 -i files.txt -c copy output.mp4


    


    This doesn't work for me like said above with it randomly scaling.
Mainly need a fix to stop it scaling at all.

    


  • FFmpeg4Android how to stop processing ?

    18 mai 2017, par widesteppe

    I have been successfully setup and starting ffmpeg4android as described here http://androidwarzone.blogspot.com/2011/12/ffmpeg4android.html and all goes fine. But what if I want to stop processing before it will be finished. I call fExit(Context context) method from LoadJNI class and nothing happens. Does someone know how correctly stop ffmpeg4android processing ?