Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (76)

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

  • lpc : add ff_lpc_calc_ref_coefs_f() function

    1er septembre 2015, par Rostislav Pehlivanov
    lpc : add ff_lpc_calc_ref_coefs_f() function
    

    This commit adds a function to get the reflection coefficients on
    floating point samples. It’s functionally identical to
    ff_lpc_calc_ref_coefs() except it works on float samples and will
    return the global prediction gain. The Welch window implementation
    which is more optimized works only on int32_t samples so a slower
    generic expression was used.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/lpc.c
    • [DH] libavcodec/lpc.h
  • FFMPEG crop boundaries animation

    28 septembre 2021, par VlFedotov

    I'm looking for a way to make crop filter params depends on current time.

    &#xA;

    Now I have 2 videos - white and aqua squares in one split output video, and this code works fine :

    &#xA;

    ffmpeg -i out/i1.mp4 -i out/i2.mp4 -filter_complex "[0:v]crop=iw/2:ih:0:0[left];[1:v]crop=iw/2:ih:ow:0[right];[left][right]hstack" out/generated.mp4&#xA;

    &#xA;

    My question is - how to make the border between two videos floating, animated ? For example from left side of output vide to the right ?

    &#xA;

    I already tried to use t param, e.g. like this :

    &#xA;

    ffmpeg -i out/i1.mp4 -i out/i2.mp4 -filter_complex "[0:v]crop=iw/2&#x2B;t:ih:0:0[left];[1:v]crop=iw/2-t:ih:ow:0[right];[left][right]hstack" out/generated.mp4&#xA;

    &#xA;

    But it throws an error :

    &#xA;

    [Parsed_crop_0 @ 0x7fa46060eec0] Error when evaluating the expression &#x27;iw/2&#x2B;t&#x27;&#xA;&#xA;[Parsed_crop_0 @ 0x7fa46060eec0] Failed to configure input pad on Parsed_crop_0&#xA;&#xA;Error reinitializing filters!&#xA;&#xA;Failed to inject frame into filter network: Invalid argument&#xA;&#xA;Error while processing the decoded data for stream #1:0&#xA;

    &#xA;

    Can anybody help me to solve this ? Or explain - why it isn't possible ?

    &#xA;

  • Getting errors compiling ffmpeg

    15 janvier 2024, par Vikram Mahal

    I am compiling ffmpeg for android in windows with cygwin.

    &#xA;

    I am using-

    &#xA;

      &#xA;
    1. android ndk r5
    2. &#xA;

    3. ffmpeg-0.10.3
    4. &#xA;

    5. cygwin
    6. &#xA;

    &#xA;

    Everything works fine but when i run last command then after few minutes it gives this error-

    &#xA;

    License : LGPL version 2.1 or later

    &#xA;

    Creating config.mak and config.h...

    &#xA;

    libavutil/avconfig.h is unchanged

    &#xA;

    &#xA;

    WARNING :&#xA;C :/android-ndk-r5-windows/android-ndk-r5//toolchains/arm-linux-androideabi-4.4.3/prebuilt/windows/bin/arm-linux-androideabi-pkg-config&#xA;not found, library detection may fail.

    &#xA;

    WARNING : Compiler does not indicate floating-point ABI, guessing soft.

    &#xA;

    config.log:1 : *** multiple target patterns. Stop.

    &#xA;

    config.log:1 : *** multiple target patterns. Stop.

    &#xA;

    C :\android-ndk-r5-windows\android-ndk-r5\toolchains\arm-linux-androideabi-4.4.3\prebuilt\windows\bin\arm-linux-androideabi-ld.exe :&#xA;cannot open output file ./android/armv7-a/libffmpeg.so : No such file&#xA;or directory

    &#xA;

    &#xA;

    please help me out to overcome this problem.

    &#xA;

    thanks.

    &#xA;