Recherche avancée

Médias (91)

Autres articles (75)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (4952)

  • ffmpeg "steam" cbr gop

    30 mars 2021, par Jintor

    It's about live video streaming to STEAM... with ffmpeg

    


    I have this command

    


    ffmpeg -re -i file-from-webcam.webm -deinterlace 
-c:v libx264 -pix_fmt yuv420p -preset veryfast 
-tune zerolatency -c:a aac -b:a 128k -ac 2 -strict -2 -crf 18 
-r 30 -g 60  -vb 1369k -minrate 1369k -maxrate 1369 -ar 44100 -x264-params "nal-hrd=cbr" 
-vf "scale=1280:720" -profile:v main 
-f flv "rtmp://ingest-rtmp.broadcast.steamcontent.com/app/steam_...."


    


    but after a few seconds, the stream stops and the log of steam says

    


        Make sure your upload key-frame interval is set to 2 seconds 
and use constant bitrate (CBR). 
Limit your encoders group of picture (GOP) to at most two times your framerate.


    


    but I do have -x264-params "nal-hrd=cbr" and -r 30 -g 60 framerate 30 GOP 60...

    


    Is there something wrong in the ffmpeg command ?
Or is it linux server related ?

    


    **** The SAME ffmpeg command work very nicely in youtube, twitter, twitch, dlive, facebook, etc...

    


    so what I'm I missing to get it work for steam ?

    


  • How to avoid mouse pointer flicker when capture a window by FFmpeg ?

    4 août 2022, par Maria

    I used gdigrab for capture a window. it works well, But the mouse pointer blinks. (Especially when the window size is large)

    



    My commands (c#) :

    



     Process FFProc= new Process();
 FFProc.StartInfo.FileName = "cmd.exe";
 FFProc.StartInfo.Arguments="/C ffmpeg -y -f gdigrab -framerate 25 -i title=\"MyWin\" out.mpg";
 FFProc.Start();


    



    or (c++) :

    



     system("ffmpeg -y -f gdigrab -framerate 25 -i title=\"MyWin\" out.mpg");


    



    Please tell me How to avoid mouse pointer flicker when capture a window by FFmpeg ?

    



    FFmpeg = latest Zeranoe build

    



    OS = MS Windows 8.1

    


  • How to avoid mouse pointer flicker when capture a window by FFmpeg ?

    1er décembre 2015, par Mitra M

    I used gdigrab for capture a window. it works well, But the mouse pointer blinks. (Especially when the window size is large)

    My commands (c#) :

    Process FFProc= new Process();
    FFProc.StartInfo.FileName = "cmd.exe";
    FFProc.StartInfo.Arguments="/C ffmpeg -y -f gdigrab -framerate 25 -i title=\"MyWin\" out.mpg";
    FFProc.Start();

    or (c++) :

    system("ffmpeg -y -f gdigrab -framerate 25 -i title=\"MyWin\" out.mpg");

    Please tell me How to avoid mouse pointer flicker when capture a window by FFmpeg ?

    FFmpeg = latest Zeranoe build

    OS = MS Windows 8.1