Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (97)

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

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (15605)

  • lavfi/fifo : fix flushing when using request_samples

    4 août 2013, par Anton Khirnov
    lavfi/fifo : fix flushing when using request_samples
    

    If any samples are still buffered when request_frame returns EOF, they
    won’t be returned currently.

    • [DH] libavfilter/fifo.c
  • Audio clicks / cracklings with ffmpeg audio recording on mac os

    15 février 2023, par Specimen

    I'm having audio clicks on my ffmpeg audio recordings. If I record with OBS for example, the audio comes out just fine. This is what I put in the terminal :

    


    ffmpeg -f avfoundation -i ":0" test.mp3


    


    where 0 is my Soundflower audio device, which I found using ffmpeg -f avfoundation -list_devices true -i "", which returns :

    


    AVFoundation audio devices:
[0] Soundflower (2ch)


    


    Soundflower, my speakers, and the ffmpeg recording are all set at 48kHz.
There is another thread that states that this may be an issue with ffmpeg version 4.3, and to try to downgrade to 4.2 ; I tried to google how to downgrade on brew, but didn't find anything.

    


  • FFmpeg H.264 NVENC - high444p profile not working at 1920x1080 via library but works via command line encoding

    10 décembre 2024, par Vivek Nathani

    I am building a real-time desktop streaming application in Rust and I am using FFmpeg (H.264 NVENC) to encode the raw frames captured as BGRA from desktop.

    


    I am able to get it to work on profiles such as baseline, main, and high but nothing seems to be working on high444p which is what I need to do 4:4:4 chroma subsampling.

    


    Below is the setup I have for constructing the encoder. I am using the rust-ac-ffmpeg crate to do this.

    


    builder = builder
    .pixel_format("bgra")
    .height(1080)
    .width(1920)
    .set_option("profile", "high444p")
    .set_option("preset", "medium")
    .set_option("tune", "hq")
    .set_option("b:v", "30M")
    .set_option("maxrate", "30M")
    .set_option("bufsize", "60M")
    .set_option("framerate", "60")
    .set_option("pix_fmt", "yuv444p");


    


    No matter what combination of settings I try, I always get a single line error as follows :

    


    [h264_nvenc @ 0000020bf69f6680] InitializeEncoder failed: invalid param (8): Invalid Level.


    


    I have also tried adding levels explicitly. Have tried 4.1, 4.2, 5.1, 5.2, 6.1 and 6.2.

    


    The only case where this does work is if the resolution is low, let's say around 500x500 or 600x800. But this is not suitable for my usecases.

    


    Moreover, the equivalent command for this just works right out of the box. On the same machine. Same ffmpeg version. Running this command on an output.raw file which is just a dump of the frames captured by my screen capture mechanism.

    


    ffmpeg -f rawvideo -pix_fmt bgra -s 1920x1080 -framerate 60 -i input.raw -c:v h264_nvenc -preset p1 -profile:v high444p -pix_fmt yuv444p -b:v 30M -maxrate 30M -bufsize 60M output.mp4