Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (77)

  • 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 ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 version 0.1 Beta

    16 avril 2011, par

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

  • FFmpeg batch script

    1er avril 2017, par Memo Can

    I have this batch script running perfectly on Windows :

    C:\ffmpeg\bin\ffmpeg -i http://ipaddress/stream -deinterlace -c:v libx264 -pix_fmt yuv420p -s 960x540 -preset superfast -vb 1200k -maxrate 1200k -r 30 -g 60 -bufsize 8000k  -c:a aac -b:a 64k -ar 44100 -ac 2 -f flv rtmp://ipaddress/live/

    Sometimes ffmpeg crashes, how can I edit the batch script or what can i add to the batch file to restart the stream.

    Thanks advance !

  • FFmpeg batch script

    13 juin 2023, par Memo Can

    I have this batch script running perfectly on Windows :

    



    C:\ffmpeg\bin\ffmpeg -i http://ipaddress/stream -deinterlace -c:v libx264 -pix_fmt yuv420p -s 960x540 -preset superfast -vb 1200k -maxrate 1200k -r 30 -g 60 -bufsize 8000k  -c:a aac -b:a 64k -ar 44100 -ac 2 -f flv rtmp://ipaddress/live/


    



    Sometimes ffmpeg crashes, how can I edit the batch script or what can i add to the batch file to restart the stream.

    



    Thanks advance !

    


  • DVD Protection Test on Batch on MacOSX [closed]

    30 mars 2014, par jonhatan smith

    I work on Mac and PC so this question is for both OS.
    I'm new to batch scripting and I'm wondering if there is any way to test if a DVD (with chapters and titles and videos) is protected or not.
    What I mean by protected, is any kind of protection that could alterate the ripping of my DVD.
    After testing if the DVD is protected, the script should put the result into a variable, to later perform another operation.

    the script process could look like that :

    Is the Drive X contains A DVD?

       if No--->Pause;
       else if Yes--->Continue;
       else error;

       Is the DVD Protected?
           if No--->open HandBrake.app;
           else if Yes--->open program.app;
           else error;

    Thank you in advance for any replies.