Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (80)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (9966)

  • Pass ffmpeg stream through python script

    24 décembre 2018, par luddite478

    Please tell me how to pass my stream from ffmepg through python script, get response back, and pass it to ffmpeg again ?
    For now i have something like this :

     FFMPEG_SCRIPT = [ "ffmpeg",  '-i', 'fifo',  '-pix_fmt', 'bgr24',  '
       -vcodec', 'rawvideo',  '-an', '-sn',  '-f', 'mpegts', '-' ]
       pipe = sp.Popen(FFMPEG_SCRIPT, stdout = sp.PIPE, bufsize=4096)

    After this i’m just reading video-frames in while loop

    while True:
        frame = pipe.stdout.read(480*720*3)
        sys.stdout.write(frame)

    So how can i access the frame after i wrote it to stdout at the last line ?

  • Get Pid Ffmpeg On Centos With Bash Script

    2 mai 2020, par Abdullah Al-Habsyi

    I was created SH script n run with cron for 3 hours. but i want update live cctv real time if not online, i want grep pid for each sh i have. if pid exist nothing to do, if pid not exist run command this.

    



    #!/bin/bash
#IP 192.168.19.6

ping -c 1 -q 192.168.19.6 >&/dev/null

if [ $? -eq 0 ]; then
    rm -rf /var/www/cctv/public_html/video/ri-2/*.ts;
    rm -rf /var/www/cctv/public_html/video/ri-2/*.m3u8
    ffmpeg -stimeout 87000000 -err_detect aggressive -fflags discardcorrupt \
    -rtsp_transport tcp -i "rtsp://admin:12345@192.168.19.6/media/video1" \
    -vf scale=320:-1 -c:v libx264 -pix_fmt yuv420p -preset:v ultrafast \
    -hls_time 10 -hls_list_size 10 -hls_delete_threshold 10 -hls_flags delete_segments -f hls \
    "/var/www/cctv/public_html/video/ri-2/simpang.m3u8" \
    -progress -stats

else
    rm -rf /var/www/cctv/public_html/video/ri-2/*.ts;
    rm -rf /var/www/cctv/public_html/video/ri-2/*.m3u8
fi 


    


  • Revision a83db43632 : Add a script for converting ads arm assembly to microsoft armasm format The for

    20 novembre 2012, par Martin Storsjo

    Changed Paths :
     Modify /build/make/Makefile


     Add /build/make/ads2armasm_ms.pl



    Add a script for converting ads arm assembly to microsoft armasm format

    The formats are basically the same, but a few minor details need
    to be adjusted. Addiitonally, when building for the WinRT/Windows
    Phone 8 platforms, one has to build for thumb, so convert instructions
    accordingly.

    Change-Id : I3c3902aa20fd3bfc29168d3a1bf17111e5481dcb