Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (54)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9672)

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