Recherche avancée

Médias (91)

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • cbs_av1 : Fix test for presence of buffer_removal_time element

    23 août 2020, par Mark Thompson
    cbs_av1 : Fix test for presence of buffer_removal_time element
    

    The frame must be in both the spatial and temporal layers for the
    operating point, not just one of them.

    • [DH] libavcodec/cbs_av1_syntax_template.c
  • FFmpeg error - "at least one output file must be specified" [closed]

    7 février 2013, par Derrick Tucker

    I'm having a little trouble, and I feel like the solution is probably starting me in the face.

    ffmpeg -ss 0 -i rawvid.flv -t 33 -vf scale=640x480 -b:21504 test.mpg

    When run, this yells at me that "At least one output file must be specified". I've been knocking me head on the wall for hours now, what am I missing ?

    PS : FFmpeg works fine, and if I remove all of the flags in the statement above, it works.

  • 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