Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (71)

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

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8898)

  • Using JavaCV and FFMpeg how to get high quality video preview

    22 avril 2015, par Munchoo

    Hi am using JavaCV to record a video and save it. But the quality is very low.
    Can anybody suggest what specifications we need to give for a good high quality video. The below code is used

    @Override
       public void onPreviewFrame(byte[] data, Camera camera) {
           /* get video data */
           long frameTimeStamp = 0L;
           if(mAudioTimestamp == 0L && firstTime > 0L)
               frameTimeStamp = 1000L * (System.currentTimeMillis() -firstTime);
           else if (mLastAudioTimestamp == mAudioTimestamp)
               frameTimeStamp = mAudioTimestamp + frameTime;
           else
           {
               long l2 = (System.nanoTime() - mAudioTimeRecorded) / 1000L;
               frameTimeStamp = l2 + mAudioTimestamp;
               mLastAudioTimestamp = mAudioTimestamp;
           }
           synchronized (mVideoRecordLock) {
               if (recording && rec && lastSavedframe != null && lastSavedframe.getFrameBytesData() != null && yuvIplImage != null)
               {
                   mVideoTimestamp += frameTime;
                   if(lastSavedframe.getTimeStamp() > mVideoTimestamp)
                   mVideoTimestamp = lastSavedframe.getTimeStamp();
                   try {
                           yuvIplImage.getByteBuffer().put(lastSavedframe.getFrameBytesData());
                           videoRecorder.setTimestamp(lastSavedframe.getTimeStamp());
                           videoRecorder.record(yuvIplImage);
                       } catch (com.googlecode.javacv.FrameRecorder.Exception e) {
                           e.printStackTrace();
                       }
               }
               lastSavedframe = new SavedFrames(data,frameTimeStamp);
           }
       }
  • High quality screen capture using ffmpeg on wayland [closed]

    27 novembre 2024, par Charlie Benger-Stevenson

    Running hyprland/wayland on arch.

    


    I want a reasonable quality (for say youtube) screen capture.

    


    ffmpeg -device /dev/dri/card1 -re -f kmsgrab -i - -vf 'hwmap=derive_device=vaapi,hwdownload,format=bgr0' -s 1920x1080 -c:v mpeg2video -b:v 1M -t 5  ~/Recordings/screencap.avi


    


    This should set a bitrate of 1M but the output is super blocky with a much lower bitrate than specified by the b:v flag.

    


    What am I doing wrong ?

    


  • fate/pixfmts : extend the high bit depth test

    2 novembre 2024, par James Almer
    fate/pixfmts : extend the high bit depth test
    

    Also test 8bit formats, and try bitdepth conversion paths.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswscale/utils.c
    • [DH] tests/fate-run.sh
    • [DH] tests/fate/pixfmt.mak
    • [DH] tests/ref/pixfmt/gbrp-bgr24
    • [DH] tests/ref/pixfmt/gbrp-gbrp10be
    • [DH] tests/ref/pixfmt/gbrp-gbrp10le
    • [DH] tests/ref/pixfmt/gbrp-gbrp12be
    • [DH] tests/ref/pixfmt/gbrp-gbrp12le
    • [DH] tests/ref/pixfmt/gbrp-gbrp16be
    • [DH] tests/ref/pixfmt/gbrp-gbrp16le
    • [DH] tests/ref/pixfmt/gbrp-gray
    • [DH] tests/ref/pixfmt/gbrp-gray10be
    • [DH] tests/ref/pixfmt/gbrp-gray10le
    • [DH] tests/ref/pixfmt/gbrp-gray12be
    • [DH] tests/ref/pixfmt/gbrp-gray12le
    • [DH] tests/ref/pixfmt/gbrp-gray16be
    • [DH] tests/ref/pixfmt/gbrp-gray16le
    • [DH] tests/ref/pixfmt/gbrp-monob
    • [DH] tests/ref/pixfmt/gbrp-monow
    • [DH] tests/ref/pixfmt/gbrp-nv12
    • [DH] tests/ref/pixfmt/gbrp-nv16
    • [DH] tests/ref/pixfmt/gbrp-nv24
    • [DH] tests/ref/pixfmt/gbrp-p010be
    • [DH] tests/ref/pixfmt/gbrp-p010le
    • [DH] tests/ref/pixfmt/gbrp-p012be
    • [DH] tests/ref/pixfmt/gbrp-p012le
    • [DH] tests/ref/pixfmt/gbrp-p016be
    • [DH] tests/ref/pixfmt/gbrp-p016le
    • [DH] tests/ref/pixfmt/gbrp-p210be
    • [DH] tests/ref/pixfmt/gbrp-p210le
    • [DH] tests/ref/pixfmt/gbrp-p212be
    • [DH] tests/ref/pixfmt/gbrp-p212le
    • [DH] tests/ref/pixfmt/gbrp-p216be
    • [DH] tests/ref/pixfmt/gbrp-p216le
    • [DH] tests/ref/pixfmt/gbrp-p410be
    • [DH] tests/ref/pixfmt/gbrp-p410le
    • [DH] tests/ref/pixfmt/gbrp-p412be
    • [DH] tests/ref/pixfmt/gbrp-p412le
    • [DH] tests/ref/pixfmt/gbrp-p416be
    • [DH] tests/ref/pixfmt/gbrp-p416le
    • [DH] tests/ref/pixfmt/gbrp-rgb24
    • [DH] tests/ref/pixfmt/gbrp-rgb32
    • [DH] tests/ref/pixfmt/gbrp-rgb48
    • [DH] tests/ref/pixfmt/gbrp-rgb555
    • [DH] tests/ref/pixfmt/gbrp-rgb565
    • [DH] tests/ref/pixfmt/gbrp-uyvy422
    • [DH] tests/ref/pixfmt/gbrp-v30xle
    • [DH] tests/ref/pixfmt/gbrp-vuyx
    • [DH] tests/ref/pixfmt/gbrp-vyu444
    • [DH] tests/ref/pixfmt/gbrp-x2bgr10le
    • [DH] tests/ref/pixfmt/gbrp-x2rgb10le
    • [DH] tests/ref/pixfmt/gbrp-xv30le
    • [DH] tests/ref/pixfmt/gbrp-xv36be
    • [DH] tests/ref/pixfmt/gbrp-xv36le
    • [DH] tests/ref/pixfmt/gbrp-xv48be
    • [DH] tests/ref/pixfmt/gbrp-xv48le
    • [DH] tests/ref/pixfmt/gbrp-xyz12le
    • [DH] tests/ref/pixfmt/gbrp-y210le
    • [DH] tests/ref/pixfmt/gbrp-y212le
    • [DH] tests/ref/pixfmt/gbrp-y216le
    • [DH] tests/ref/pixfmt/gbrp-yuv410p
    • [DH] tests/ref/pixfmt/gbrp-yuv411p
    • [DH] tests/ref/pixfmt/gbrp-yuv420p
    • [DH] tests/ref/pixfmt/gbrp-yuv420p10be
    • [DH] tests/ref/pixfmt/gbrp-yuv420p10le
    • [DH] tests/ref/pixfmt/gbrp-yuv420p12be
    • [DH] tests/ref/pixfmt/gbrp-yuv420p12le
    • [DH] tests/ref/pixfmt/gbrp-yuv420p16be
    • [DH] tests/ref/pixfmt/gbrp-yuv420p16le
    • [DH] tests/ref/pixfmt/gbrp-yuv422p
    • [DH] tests/ref/pixfmt/gbrp-yuv422p10be
    • [DH] tests/ref/pixfmt/gbrp-yuv422p10le
    • [DH] tests/ref/pixfmt/gbrp-yuv422p12be
    • [DH] tests/ref/pixfmt/gbrp-yuv422p12le
    • [DH] tests/ref/pixfmt/gbrp-yuv422p16be
    • [DH] tests/ref/pixfmt/gbrp-yuv422p16le
    • [DH] tests/ref/pixfmt/gbrp-yuv440p
    • [DH] tests/ref/pixfmt/gbrp-yuv440p10be
    • [DH] tests/ref/pixfmt/gbrp-yuv440p10le
    • [DH] tests/ref/pixfmt/gbrp-yuv440p12be
    • [DH] tests/ref/pixfmt/gbrp-yuv440p12le
    • [DH] tests/ref/pixfmt/gbrp-yuv444p
    • [DH] tests/ref/pixfmt/gbrp-yuv444p10be
    • [DH] tests/ref/pixfmt/gbrp-yuv444p10le
    • [DH] tests/ref/pixfmt/gbrp-yuv444p12be
    • [DH] tests/ref/pixfmt/gbrp-yuv444p12le
    • [DH] tests/ref/pixfmt/gbrp-yuv444p16be
    • [DH] tests/ref/pixfmt/gbrp-yuv444p16le
    • [DH] tests/ref/pixfmt/gbrp-yuvj420p
    • [DH] tests/ref/pixfmt/gbrp-yuvj422p
    • [DH] tests/ref/pixfmt/gbrp-yuvj440p
    • [DH] tests/ref/pixfmt/gbrp-yuvj444p
    • [DH] tests/ref/pixfmt/gbrp-yuyv422
    • [DH] tests/ref/pixfmt/gbrp-yvyu422
    • [DH] tests/ref/pixfmt/gbrp10-bgr24
    • [DH] tests/ref/pixfmt/gbrp10-gbrp12be
    • [DH] tests/ref/pixfmt/gbrp10-gbrp12le
    • [DH] tests/ref/pixfmt/gbrp10-gbrp16be
    • [DH] tests/ref/pixfmt/gbrp10-gbrp16le
    • [DH] tests/ref/pixfmt/gbrp10-gray
    • [DH] tests/ref/pixfmt/gbrp10-gray12be
    • [DH] tests/ref/pixfmt/gbrp10-gray12le
    • [DH] tests/ref/pixfmt/gbrp10-gray16be
    • [DH] tests/ref/pixfmt/gbrp10-gray16le
    • [DH] tests/ref/pixfmt/gbrp10-monob
    • [DH] tests/ref/pixfmt/gbrp10-monow
    • [DH] tests/ref/pixfmt/gbrp10-nv12
    • [DH] tests/ref/pixfmt/gbrp10-nv16
    • [DH] tests/ref/pixfmt/gbrp10-nv24
    • [DH] tests/ref/pixfmt/gbrp10-p012be
    • [DH] tests/ref/pixfmt/gbrp10-p012le
    • [DH] tests/ref/pixfmt/gbrp10-p016be
    • [DH] tests/ref/pixfmt/gbrp10-p016le
    • [DH] tests/ref/pixfmt/gbrp10-p212be
    • [DH] tests/ref/pixfmt/gbrp10-p212le
    • [DH] tests/ref/pixfmt/gbrp10-p216be
    • [DH] tests/ref/pixfmt/gbrp10-p216le
    • [DH] tests/ref/pixfmt/gbrp10-p412be
    • [DH] tests/ref/pixfmt/gbrp10-p412le
    • [DH] tests/ref/pixfmt/gbrp10-p416be
    • [DH] tests/ref/pixfmt/gbrp10-p416le
    • [DH] tests/ref/pixfmt/gbrp10-rgb24
    • [DH] tests/ref/pixfmt/gbrp10-rgb32
    • [DH] tests/ref/pixfmt/gbrp10-rgb48
    • [DH] tests/ref/pixfmt/gbrp10-rgb555
    • [DH] tests/ref/pixfmt/gbrp10-rgb565
    • [D