Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

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.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5910)

  • avcodec/hevc : Add init for sao_edge_filter

    28 décembre 2023, par jinbo
    avcodec/hevc : Add init for sao_edge_filter
    

    Forgot to init c->sao_edge_filter[idx] when idx=0/1/2/3.
    After this patch, the speedup of decoding H265 4K 30FPS
    30Mbps on 3A6000 is about 7% (42fps==>45fps).

    Change-Id : I521999b397fa72b931a23c165cf45f276440cdfb
    Reviewed-by : yinshiyou-hf@loongson.cn
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/loongarch/hevcdsp_init_loongarch.c
  • Playback drops frames or stutter on good hardware [closed]

    30 décembre 2023, par Lemonek

    I'm planning to use TDARR and tring to prevent any issues before with (re)encoding. And I have stumbled on issue with one TV Show - recently I have downloaded refreshed old show but playback stutters on TV or drops frames (few frames every few secs - so video plays nicely but suddenly few frames are dropeed and then for next few secs it playsnicely - no issues with sound)

    &#xA;

    I guess this particular video has some options which causes issues or I dont know but here are some facts I have gathered (ffprobe -v quiet -print_format json -show_format -show_streams) :

    &#xA;

      &#xA;
    1. The TV is capable of playing FullHD HECV 10bit smoothly https://pastebin.com/0efSGjk9
    2. &#xA;

    3. Original video stutters https://pastebin.com/vvLn8y4a
    4. &#xA;

    5. Converted video (QSV) stutters (linux/ffmpeg https://pastebin.com/XbazLEft&#xA;Below cutout part of script parameters for converting - $FPS is supplied as without it ffmpeg does not create I Frames but that is not a problem here)
    6. &#xA;

    &#xA;

            -hide_banner -y -init_hw_device qsv:hw \&#xA;        -hwaccel qsv -hwaccel_output_format qsv \&#xA;        -i "$FILENAME_BACK" \&#xA;        -map 0:v:0 -map 0:a:0 \&#xA;        -c:v hevc_qsv -preset slow -global_quality 22 -g $FPS\&#xA;        -c:a copy \&#xA;        -movflags faststart "$FILENAME_OUTPUT"&#xA;

    &#xA;

      &#xA;
    1. Converted video (NVENC) plays nicely (win/handbrake) https://pastebin.com/HbBNMZvT
    2. &#xA;

    &#xA;

    In the end I wish I could create "safe" parameters list which I will supply to TDARR and not to worry about issues while converting videos.

    &#xA;

    Forgot to mention - Hardware on which Im planning to mass encode has Intel proc with QSV capabilities - I'm not planning to encode on NV.

    &#xA;

    If needed - I can provide any other information.

    &#xA;

  • ffmpeg convert video to size 275x157 pixels [closed]

    21 janvier 2024, par degr

    I want to make video of exact size 275x157, but ffmpeg always make it 274x156.

    &#xA;

    So far I try next list of commands :

    &#xA;

    //it from my opinion, it should make vide of my size, and add padding if necessary, but result is same - 274x156&#xA;ffmpeg -i ScreenRecorderProject7.mkv  -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4&#xA;&#xA;//more advanced variant of previous command, not work also&#xA;ffmpeg -i ScreenRecorderProject7.mkv  -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4&#xA;&#xA;//it told width is not divisible by 2&#xA;ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf scale=275x157 -aspect 1.75259 output.mp4&#xA;&#xA;//in description it was mentioned it add 1px pad, but I feel it is wrong; result incorrect&#xA;ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf pad="width=ceil(iw/2)*2:height=ceil(ih/2)*2" output.mp4&#xA;

    &#xA;

    Also I try to do so with movavi video editor, streamlabs and couple online video converters and always I'm getting wrong resolution. Cant understand what is wrong with that numbers

    &#xA;