Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (59)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

Sur d’autres sites (3967)

  • checkasm : x86 : post commit review fixes

    22 décembre 2015, par Janne Grunau
    checkasm : x86 : post commit review fixes
    

    Check the full FPU tag word instead of only the lower half and simplify
    the comparison.
    Use upper-case function base name as macro name to instantiate both
    checked_call variants.

    • [DBH] tests/checkasm/x86/checkasm.asm
  • fftools/ffmpeg_mux : replace monotonous with monotonic

    29 août 2023, par Leo Izen
    fftools/ffmpeg_mux : replace monotonous with monotonic
    

    The word "monotonous" means "spoken in a monotone" which is not what we
    mean here. We mean "monotonic" i.e. nondecreasing.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] fftools/ffmpeg_mux.c
  • How to use ffmpeg with h.265 (or h.264) codec ?

    6 octobre 2022, par randomuser1

    Normally I start recording the camera image with the command :

    &#xA;&#xA;

    ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4

    &#xA;&#xA;

    but I'm not sure which coded do I use in here (I'm just beginning my adventure with ffmpeg), however I found on this webpage this command :

    &#xA;&#xA;

    ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov

    &#xA;&#xA;

    But when I run it - I get the following error :&#xA;INPUT: No such file or directory"

    &#xA;&#xA;

    I changed the INPUT word above also to 0, so the command is

    &#xA;&#xA;

    ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov,&#xA;but error stays similar (0: no such file or directory).&#xA;How can I grab the camera image and save it to a file while using the H.265 ?

    &#xA;