Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (55)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (11238)

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

  • Fastest way to create long video from 1 image with ffmpeg

    12 février 2015, par johnvantes

    What is the fastest way to create a video with long duration (1 hour), from a single image ?
    Here is what I have now :

    ffmpeg -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 3600 -pix_fmt yuv420p -vf scale=640:480 image.mp4

    But it’s taking too long in my case, around 40 minutes. The image size I am using is 800KB.

    Many many thanks in advance !