Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (50)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5385)

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