Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (79)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (8787)

  • aac : Validate the sbr sample rate before using the value

    11 février 2017, par Luca Barbato
    aac : Validate the sbr sample rate before using the value
    

    Avoid a floating point exception.

    Bug-Id : 1027
    CC : libav-stable@libav.org

    • [DBH] libavcodec/aacsbr.c
  • 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
  • ffmpeg is cutting video length incorrectly

    1er mars 2018, par jameshwart lopez

    I use ffmpeg to check the length of the video and to cut video.

    I have a video with the lenght of 19.458333 seconds that’s why i want to cut it to only have 19 seconds because i don’t want the floating point.

    I check the video length using below command

    ffprobe -i "video.avi" -show_entries format=duration -v quiet -of csv="p=0"

    And I use below command to cut video the video

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 00:00:19.000 -c copy out.mp4

    or

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 19 -c copy output.avi

    The problem i have is when i cut the video with the above command and check the length the output file’s length is 19.018 seconds. Can someone help me with this problem ?