Recherche avancée

Médias (91)

Autres articles (47)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • Music Bot with replit

    7 août 2021, par T F

    I am currently using replit for my bot. I have installed all the necessary packages and ffmpeg for replit. When I start the bot from my PC everything works, but when I start the bot with replit, the bot joins my channel, says it is playing music and leaves the channel immediately. What could be the reason/fix for this ?

    


    (No error happens)

    


    Edit :

    


    I don't get any errors and the code works. I tested it with the host on my PC. In replit I installed discordjs / opus, opus and ytdl-core. Then I downloaded the ffmpeg-4.4-i686-static from ffmpeg and uploaded the ffmpeg file into replit. Last I typed chmod +777 ./ffmpeg in the shell console. The code works. The problem is with replit. When I start the bot from my PC everything works and the bot plays music. Then when I paste the code into replit and start the bot, the bot briefly joins my channel and then leaves it again. There are no errors or anything else.

    


  • Python - live straming from GoPro and convert in mp4

    13 août 2017, par chri13

    I need to develop an Android App that display live stream from GoPro Hero4...

    I have used a Python Script (through ffmpeg) to display on my pc, live stream...

    This is the main python command :

    subprocess.Popen("ffmpeg -i 'udp://:8554' -fflags nobuffer -f:v mpegts -probesize 8192 " + TS_PARAMS + SAVELOCATION, shell=True)

    What is a Python command (or a terminal linux command) to do this :

    • take live stream from GoPro Hero4
    • open new stream
    • convert in mp4 format the input frames from GoPro
    • send the input frames in the new stream
    • and then, take this new mp4 stream from my Android App

     ??

    Can you help me, please ?

    Thank you very much !

    Best Regards !

  • FFMPEG thumbnail in php application's is not rotated properly

    4 septembre 2015, par Vignesh

    I have created a FFMPEG thumbnail in a php application and tried to rotate the thumbnail image if the video is bottom up(reversed).But the image rotate is not working properly.
    The below is the code for image rotation

    $video = $storeHere.$mediaFile;
                                   $tImage = $upload_output['uploaded_file'].'.jpg';
                                   $thumbnail = $storeHere.$tImage;
                                   // shell command [highly simplified, please don't run it plain on your script!]
                                    shell_exec("ffmpeg -i $video -deinterlace -an -ss 1 -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg -s 250x250  $thumbnail 2>&1");
                                    /* image rotate fix */
                                       $source = imagecreatefromjpeg($thumbnail);
                                       $degrees = 270;
                                       $rotate = imagerotate($source, $degrees, 0);
                                       imagejpeg($rotate,$thumbnail);
                                    /* rotate fix ends */