Recherche avancée

Médias (91)

Autres articles (59)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (8516)

  • avcodec/mpeg12enc : Move high resolution thread check to before initializing threads

    21 janvier 2016, par Michael Niedermayer
    avcodec/mpeg12enc : Move high resolution thread check to before initializing threads
    

    Cleaner solution is welcome !

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg12enc.c
    • [DH] libavcodec/pthread_slice.c
  • how to determine if video file is 'high quality' using bitrate and dimensions ?

    22 août 2016, par Flo Woo

    Assuming a directory full of videos, if you extracted the video metadata to get video bitrate and dimensions. Is there a recommend way to plug in these values and get a LOW/HI quality answer.

    I would like to sort videos into a LOW/HI quality directory layout but after using ffmpeg to get the meta data, it isn’t obvious how to programmatically ascertain the videos quality.

    Is this possible ?

    Thank you.

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

    &#xA;

    my needs are :

    &#xA;

      &#xA;
    • high quality (720p or 1080p)
    • &#xA;

    • minimum size
    • &#xA;

    • record audio + screen + mic
    • &#xA;

    • low impact on PC hardware while recording
    • &#xA;

    • no need for any wait after the recorder stopped
    • &#xA;

    &#xA;

    &#xA;

    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

    &#xA;

    &#xA;

    I already tried :

    &#xA;

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

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

    • 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
    • &#xA;

    • 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
    • &#xA;

    • 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
    • &#xA;

    &#xA;

    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

    &#xA;