Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (13542)

  • FFmpeg nvenc high gpu usage

    6 février 2023, par Alexandru-Marian Buza

    I can't find the reason of why ffmpeg nvenc use so that much 3d from GPU.

    


    enter image description here

    


    I've tried change settings of codec.

    


    codec->width = 1728;
            codec->height = 1080;
            codec->time_base.den = 120;
            codec->time_base.num = 1;
            codec->framerate.den = 1;
            codec->framerate.num = 120;
            codec->bit_rate_tolerance = 19;
            codec->compression_level = 2;
            codec->pix_fmt = AV_PIX_FMT_BGRA;
            writeText("Preset " + to_string(av_opt_set(codec, "preset", "p4", AV_OPT_SEARCH_CHILDREN)));
            writeText("Tune " + to_string(av_opt_set(codec, "tune", "ull", AV_OPT_SEARCH_CHILDREN)));
            writeText("RateControl " + to_string(av_opt_set(codec, "rc", "cbr", AV_OPT_SEARCH_CHILDREN)));


    


  • record screen with high quality and minimum size in ElectronJS (Windows)

    4 avril 2022, par Seyed Ali Roshan

    as I said in the title, I need to record my screen from an electron app.

    


    my needs are :

    


      

    • high quality (720p or 1080p)
    • 


    • minimum size
    • 


    • record audio + screen + mic
    • 


    • low impact on PC hardware while recording
    • 


    • no need for any wait after the recorder stopped
    • 


    


    


    by minimum size I mean about 400MB on 720p and 700MB on 1080p for a 3 to 4 hours recording. we already could achieve this by bandicam and obs and it's possible

    


    


    I already tried :

    


      

    • the simple MediaStreamRecorder API using RecordRTC.Js ; produces huge file sizes, like 1GB per hour for 720p video.
    • 


    • compressing the output video using FFmpeg ; it can take up to 1 hour for 3 hours recording
    • 


    • save every chunk with 'ondataavailable' event and right after, run FFmpeg and convert and reduce the size and append all the compressed files (also by FFmpeg) ; there are two problems. 1, because of different PTS but it can be fixed by tunning compress command args. 2, the main problem is the audio data headers are only available in the first chunk and this approach causes a video that only has audio for the first few seconds
    • 


    • recording the video with FFmpeg itself ; the end-users need to change some things manually (Stereo Mix), the configs are too complex, it causes the whole PC to work slower while recording (like fps drop ; even if I set -threads to 1), in some cases after recording is finished it needs many times to wrap it all up
    • 


    • searched through the internet to find applications that can be used from the command line ; I couldn't find much, the famous applications like bandicam and obs have command line args but there are not many args to play with and I can't set many options which leads to other problems
    • 


    


    I don't know what else I can do, please tell me if u know a way or simple tool that can be used through CLI to achieve this and guide me through this

    


  • High CPU Usage with FFMPEG [closed]

    4 septembre 2021, par AlanPear

    I am trying to stream to Youtube Live using FFMPEG, and it works well for about a minute.

    


    After a minute all the cores on my machine (tired both 2 and 4 cores) run at 100% and the stream freezes. Here is the command I am running :

    


    ffmpeg -loglevel error -re -filter_complex movie=/home/kyle/Documents/myStream/video/FrighteningSparklingHomalocephale.mp4:loop=0,setpts=N/FRAME_RATE/TB -i /home/kyle/Documents/myStream/audio/Aviscerall-Just Livin-05Unhappy.mp3 -codec:v libx264 -pix_fmt yuv420p -preset ultrafast -b:v 800k -r 30.0 -g 60.0 -codec:a aac -b:a 128k -ar 44100 -maxrate 800k -bufsize 400k -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/somekeyhere


    


    Any ideas as to what I am doing wrong ?