Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (68)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

Sur d’autres sites (8650)

  • avfilter/framepool : fix alignment requirements for audio and video filters

    20 février 2022, par Paul B Mahol
    avfilter/framepool : fix alignment requirements for audio and video filters
    
    • [DH] libavfilter/audio.c
    • [DH] libavfilter/framepool.c
    • [DH] libavfilter/video.c
  • 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

    


  • avfilter/vf_frei0r : Copy to frame allocated according to frei0r requirements

    11 avril 2022, par Michael Niedermayer
    avfilter/vf_frei0r : Copy to frame allocated according to frei0r requirements
    

    Fixes : issues with non trivial linesize

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_frei0r.c