Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (77)

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

  • configure : rework parsing —cpu arguments to support all features unless blacklisted

    17 septembre 2023, par James Almer
    configure : rework parsing —cpu arguments to support all features unless blacklisted
    

    Keeping an ever growing list of CPUs just to pass -march to the compiler and
    enable fast_cmov is a waste of time. Every CPU we know has limitations is
    already handled here, so just fallback to enabling everything when a passed in
    argument is not one of those.

    This will enable optimizations for CPU architectures released in the past 7 or
    so years with supported GCC and clang compilers when used as argument in
    configure, instead of silently ignoring them.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] configure
  • avcodec/tiff : Don't cast const away

    7 septembre 2023, par Andreas Rheinhardt
    avcodec/tiff : Don't cast const away
    

    lzma_stream.next_in is const for more than 15 years now
    and has been so in every release of liblzma.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/tiff.c
  • FFmpeg : Trying to fade out first and later fade back in doesn't work [duplicate]

    6 septembre 2023, par Paul S

    While I just became a registered user on the site, I've been utilizing Stack Overflow for years, virtually always being able to find solutions to problems I've encountered. Unfortunately, not this time ; I have encountered a problem with the ffmpeg video fade filter. There are lots of previously proposed issues along with their solutions, but none (that I can find) that address a twist that I have.

    &#xA;

    Most questions ask, "how do I fade in", or "how do I fade out", and "how do I fade in at the beginning and fade out at the end." If I want to fade in and later fade out, my below code works just fine.

    &#xA;

    ffmpeg -ss 00.0 -accurate_seek -to 15.0 -i My.Test.File.mkv -c:v h264 -vf fade=t=in:st=0:d=2,fade=t=out:st=13:d=2 -b:v 825k -s 1280x720 -r 29.97 -c:a aac -ar 44100 -ac 2 -b:a 96k output.mp4&#xA;

    &#xA;

    However, I actually want to fade out somewhere in the middle, and then fade back in shortly after, and that doesn't seem to work. I structured the ffmpeg command as so :

    &#xA;

    ffmpeg -ss 00.0 -accurate_seek -to 15.0 -i My.Test.File.mkv -c:v h264 -vf fade=t=out:st=6:d=2,fade=t=in:st=9:d=2 -b:v 825k -s 1280x720 -r 29.97 -c:a aac -ar 44100 -ac 2 -b:a 96k output.mp4&#xA;

    &#xA;

    This fails and yields a completely blank video. I've also tried some -filter_complex variations, but get similar results ; fading in and later fading out works, but fading out and later fading in does not.

    &#xA;

    I'm using the latest ffmpeg windows version on Windows 10. I would have attached a sample video file but I'm seeing how to do that. It is not the original video file that started my issue, but it does duplicate the issue. Not sure what other info might help in coming up with a solution. Thoughts ?

    &#xA;