Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (104)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (9547)

  • Inject FFMPEG video converter directly into .NET C# ?

    3 juillet 2021, par Mehdi Daustany

    How to implement FFMPEG in .NET Core C# ?

    


    I'm using FFMPEG as a batch file, I prepared a jobs queue, then Hangfire picks queue rows to sending to the batch file to starting convert by FFMPEG.

    


    I need to inform users by a progress bar, because of using FFMPEG as a CLI third-party, it is unachievable.
Is there any nuget package or any way to inject FFMPEG into .NET ?

    


  • How to restart RTMP dump bash script if it closes / dies ?

    9 février 2016, par Shashwat Singh

    I’m using this script to dump a live stream, say "stream1.sh" etc

    #! /bin/bash
    function INT_cleanup()
    {
       kill `jobs -p`
       exit
    }

    trap INT_cleanup INT

    count=0
    while [[ $count < 10 ]] # Try 10 times
    do
       rtmpdump -r "rtmp://<ipaddress>" -a "live" -f "WIN 11,9,900,117" -W "http://xyz.swf" -p "" -y "xyz" --live | ffmpeg -re -i  - -sn  -vcodec copy -acodec copy -f flv "<ipaddress>"
       count=$((count + 1))
    done }
    </ipaddress></ipaddress>

    It runs perfectly fine for 3-4 hours then it quits automatically due to packet loss or something, however if I restart it, it again starts working.
    So, What should I do to restart this particular script IF it dies ? Will it require cronjob ? If yes, then please explain how ?

  • FFmpeg fails to be built for android

    8 septembre 2014, par Andro-Begg

    I’m trying to build FFmpeg for android, everything works just fine until the build of build_android.sh, I get at the end :

    /bin/sh: 1: cd: can't cd to ../ffmpeg-build/armeabi/lib
    make: *** [install-libavresample-shared] Error 2
    make: *** Waiting for unfinished jobs....
    /bin/sh: 1: cd: can't cd to ../ffmpeg-build/armeabi/lib
    make: *** [install-libavutil-shared] Error 2
    /bin/sh: 1: cd: can't cd to ../ffmpeg-build/armeabi/lib
    make: *** [install-libswresample-shared] Error 2

    I’ve been inspecting this for a while but couldn’t figure out where the problem is..

    Any help will be very appreciated. Thank you.