Recherche avancée

Médias (91)

Autres articles (25)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (3256)

  • Youtube doesn't play livestream from ffmpeg

    14 novembre 2017, par CindyRabbit

    I am trying to livestream my Desktop in Ubuntu to Youtube and used this cmd but didn’t work :

    ffmpeg -f x11grab -r 10 -s 1024x720 -i :0.0 -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -g 20 -b:v 2500k -threads 0 -bufsize 512k -f flv rtmp ://a.rtmp.youtube.com/live2/myKey

  • Automating youtube-dl to download videos from a Vlive Channel [on hold]

    17 août 2019, par yrcje

    I would like to automate youtube-dl to download any new live streams from a Vlive page, as youtube-dl supports vlive downloading, I would like to ask if it’s possible for me to use a bat to automate it ? As sometimes the replay just gets cut and I’d like to avoid that if possible. I tried looking into phyton as well but I can’t find any phyton related things that is related to vlive as most of them are just youtube.

    Would appreciate any help if possible.

  • How do you apply filters to ffmpeg in one sentence and put music in the ffmpeg ?

    9 septembre 2017, par 이상우

    I want to put music on a photo with a filter applied.
    However, music will not be inserted and only the video will be played.
    What should I do ?

    "C:/Users/SCITMaster/Desktop/ffmpeg-20170827-ef0c6d9-win64-static/bin/ffmpeg",
    "-loop","1","-t","5","-i","photo1.jpg",
    "-loop","1","-t","5","-i","photo2.jpg",
    "-loop","1","-t","5","-i","photo3.jpg",
    "-loop","1","-t","5","-i","photo4.jpg",
    "-loop","1","-t","5","-i","photo5.jpg",
    "-filter_complex",
    "[1:v][0:v]blend=all_expr='A*(if(gte(T,2),1,T/2))+B*(1-(if(gte(T,3),1,T/3)))'[b1v];"
    + " [2:v][1:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b2v];"
    + " [3:v][2:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b3v];"
    + " [4:v][3:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b4v];"
    + " [0:v][b1v][1:v][b2v][2:v][b3v][3:v][b4v][4:v]concat=n=9:v=1:a=0,format=yuv420p[v]",
    "-map",
    "[v]","-i","Test.mp3","-s","1280x960","-vcodec","libx264","-crf","25","-acodec","copy",
    "crossfade.mp4"