Recherche avancée

Médias (91)

Autres articles (59)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (3526)

  • avcodec/ac3enc_template : Don't free uninitialized pointers on error

    14 septembre 2020, par Andreas Rheinhardt
    avcodec/ac3enc_template : Don't free uninitialized pointers on error
    

    The ac3 encoders (fixed- and floating-point AC-3 as well as the EAC-3
    encoder) all allocate an array whose elements are pointers to other
    buffers. The array is not zeroed initially so that if an allocation of
    one of the subbuffers fails, the other pointers are uninitialized.
    This causes problems when cleaning, so zero the array initially.

    (Only the fixed-point AC-3 encoder was affected by this, because
    the other two don't clean up at all in case of errors during init.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/ac3enc_template.c
  • 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;