Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (80)

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

  • Where is the description for the '-strict' option of ffmpeg command ?

    21 septembre 2022, par tristan_jia

    I found a proper way from this post to trim videos by start and end time(in seconds), like :

    


    ffmpeg -i input.mp4 -ss 15.5 -to 18.98 -strict -2 out.mp4


    


    But I cannot find any description about this -strict from ffmpeg's official site. Anyone can give me a hint about the meaning of this option ? Thanks !

    


  • Reliability of using FFMPEG in IOS application ?

    20 juin 2014, par 2vision2

    What i am trying to do :

    Trying to develop an Enterprise level IOS application with FFMPEG for video Processing.

    What i have done so far :

    Created a Linux based sample program with FFMPEG and made it work. Learnt how to use FFMPEG. I have already found the build instructions to build the FFMPEG packages
    for IOS.

    What help i need :

    Does apple allow to place the FFMPEG based application in IOS Application Store ?

    As there is no official support from ffmpeg community for IOS, how reliable the "FFMPEG-IOS" is, as i don’t want to get into any problems in future especially when apple releases a new version of os or the problem of ffmpeg only with IOS ?

  • ffmpeg ignores -metadata option when video is encoded

    30 octobre 2018, par Rafael Lima

    I have a video with the following metadata :

    rotate : 90

    I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.

    If I do :
    ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
    the output will have removed the metadata.

    But if I do :
    ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
    then I still have the undesired metadata.

    Is there a way to remove metadata while encoding ?