Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (37)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (9281)

  • ffmpeg not working from php script but works from command line [on hold]

    12 février 2015, par david perlman

    i can run youtube-dl.php from command line "php youtube-dl.php" works fine

    but not working from http...
    is it someting with chown ?

    $url = "https://www.youtube.com/watch?v=KdS6HFQ_LUc";

    echo "Saving $url";


    $cmd = 'youtube-dl -o "/var/www/domain.com/test/%(title)s.%(ext)s" '.$url.' -f bestvideo+bestaudio';
    exec($cmd, $output, $ret);
    echo 'output: ';
    var_export($output);

    echo "\nret : " ;
    var_export($ret) ;

  • How to play live h264 stream with python [closed]

    27 juillet 2020, par vkh53121Acuoly.com

    I have a socket that listen to h264 stream, I can save this stream to file and play it with ffplay.

    


    This not rtp/rtsp that wraps h264 .that only h264.

    


    I want to watch this stream live, not save to file and after that run ffplay.

    


    How can I do that with python,so that work on windows and linux

    


  • How to loop an image properly for a live stream with FFMPEG

    28 avril 2021, par Xternet

    I'm using the below code to live stream to Instagram, now I want to loop an image so it'll go on forever as long as the process is running, it'll keep streaming. But when I watch the live stream, I keep seeing pauses in the live video. How do I fix it ?

    


    ffmpeg -loop 1 -rtbufsize 256M -re -i "image.png" -acodec libmp3lame -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -s 720x1280 -bufsize 6000k -vb 400k -maxrate 1500k -deinterlace -t 60 -vcodec libx264 -preset veryfast -g 30 -r 30 -f flv "RTMPstreamURL"