Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (56)

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

  • Ffmpeg color opacity

    19 janvier 2016, par Sandra

    I tried to rotate a video and keep the unused place due to the rotation transparent, to be able to overlay it later and to do that, I suppose that if the color was transparent is will be right ; and in the official page (https://www.ffmpeg.org/ffmpeg-filters.html#rotate) they said that you can give a color that ffmpeg would use in place of unused place due to the rotation of the video. So I tried, relatively to https://www.ffmpeg.org/ffmpeg-utils.html#Color to put a color with these commands

    ffmpeg -i video.mp4 -vf "rotate=PI/6:fillcolor=red@0.0" -acodec copy output.mp4

    and

    ffmpeg -i video.mp4 -vf "rotate=PI/6:fillcolor=red@0x00" -acodec copy output.mp4

    And it doesn’t work. The color remain opaque, and that whatever the value of the opacity (0.0 to 1.0)

    Any of you can know what is happened ?

  • asm SIMD sniffer

    1er août 2023, par Андрей Тернити

    There is x264.
It use a lot of x86 asm files. For example pixel-32.asm.
This files can use different SIMD instruction set : mmx, 3DNow !, sse family, others

    


    I need the simple way to automatically analyze every file. I want get which SIMD family in which file are used. How ?

    


    I think every asm file must contain information about which SIMD family it use (or information that no SIMD). Without this information it is very bad idea try to use this files...
    
I am angry, my x86 CPU support mmx and 3DNow ! only, but x264 try call sse, so I get "Illegal instruction" sometimes. I plan to make patch for x264.

    


    P.S. If you can make issues in official repo let me know.

    


    P.P.S. This thread on Doom9 (mirror).

    


  • What are all the command `options` to execute with ?

    25 janvier 2023, par Phil Lucks

    I'd like to be able to compress the video in a way to help improve upload times.

    


    In reading the docs for FFMpeg Kit, using React Native, there is a basic execute command string of '-i file1.mp4 -c:v mpeg4 file2.mp4'... I can guess at what some of this means, in terms of input & output file names based on the ffMPEG docs, however, some of these options I am not sure of.

    


    Like why is there a -i flag prefix ? Is this "input" ?
Why is there -c:v ? Is this "convert video" ?
What if I want to reduce frame rate, or change size of video ?

    


    The TS def is just a string...

    


    Is there a good place to understand what the official docs options map to the strings ? I think