Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (48)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (5843)

  • Live Streaming and watching HLS stream on VLC

    9 avril 2015, par TakeruDavis

    I have been trying to livestream a video in HLS using ffmpeg (trying both hls and segment mode) and everything looks like it should, m3u8 file is created and the content matches with examples.

    TS files look good as well, briefly looking at their headers in HEX editor makes them seem okay and separately, they are playable.

    But when I enter the URL of the m3u8 playlist into VLC, at first, it does nothing, then it seems like it is trying to open files with weird filenames. My best guess is it opens those TS files and treats their content as another playlist.

    Can someone help me figure out what might be the problem ?

    PS : I think I set up Apache properly too, it should be giving correct MIME types for both things.

  • Centos 6 - FFMpeg installed on /root/bin/ ...now ? [on hold]

    10 janvier 2014, par Sotiris Akis Mitracos

    I've installed FFMPEG on my Centos6 vps using this guide

    https://trac.ffmpeg.org/wiki/CentosCompilationGuide

    the result is that now i cannot use the library under apache because it can be used only by root...is there a way to extend permission to all users, or how can i remove and install it for user purpose ?

    thank you

  • Checkasm : assembly testing and benchmarking tool

    11 juillet 2015, par Henrik Gramner
    Checkasm : assembly testing and benchmarking tool
    

    It provides the following features :
    * verify correctness by comparing output to the C version.
    * detect failure to save and restore clobbered callee-saved registers.
    * detect 32-bit parameters being used as if they were 64-bit in x86-64
    (the upper halves are not guaranteed to be zero - but in practice
    they very often are, which makes those bugs hard to spot otherwise).
    * easy benchmarking.

    Compile by running ’make checkasm’.
    Execute by running ’tests/checkasm/checkasm’.

    Optional arguments are ’—bench’ to run benchmarks for all functions,
    ’—bench=<pattern>’ to run benchmarks for all functions that starts with
    <pattern>, and ’<integer>’ to seed the PRNG for reproducible results.

    Contains unit tests for most h264pred functions to get started, more tests
    can be added afterwards using those as a reference.

    Loosely based on code from x264. Currently only supports x86 and x86-64,
    but additional architectures shouldn’t be too much of an obstacle to add.

    Note that functions with floating point parameters or floating point
    return values are not supported. Some compiler-specific features or
    preprocessor hacks would likely be required to add support for that.

    Signed-off-by : Janne Grunau <janne-libav@jannau.net>

    • [DBH] .gitignore
    • [DBH] tests/Makefile
    • [DBH] tests/checkasm/Makefile
    • [DBH] tests/checkasm/checkasm.c
    • [DBH] tests/checkasm/checkasm.h
    • [DBH] tests/checkasm/h264pred.c
    • [DBH] tests/checkasm/x86/Makefile
    • [DBH] tests/checkasm/x86/checkasm.asm