Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (70)

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

  • Can't update app in store because of target api23 (no downgrade possible)

    4 mai 2016, par Thkru

    long story short :

    Problem :

    • apps uploaded with target api23 once, can’t be updated with lower target api
    • metaio can’t handle api23, due to a text relocations bug

    Idea so far :

    • replace the old libavcodec.so (arm & x86) by a newer version,
      but I can’t find any compiled version...

    PS : sure it’s dump to use a deprecated sdk and it has to be replaced sometime in the future, but for now I have to use it, as there’s a huge content and backend part that is used in the project.

    PPS : worst case idea is to upload the same app but with a different ID, api22 and AR features in the GooglePlay...and having two nearly identical apps... <_<

    Thanks a lot for every help ! :)

  • Generating thumbnails from multiple videos on Desktop, using ffmpeg, or something similar

    6 février 2013, par Birk

    Hi guys this is a long shot but here goes...

    I basically have what I mentioned in the title running on my server. When I upload a video ffmpeg decomplies it and gives me screenshots, then I pick a screenshot that I want to use for that video. Currently, my server can process 3 videos at a time. The down side is that this uses up A LOT of the server processing power. :(

    Is there a way, or a program, that can process several video at a time and generate me screenshots on my Desktop ? If this is possible then I can just use my spare computer here to process everything then upload the screenshots/video to my server.

    This is what I basically have running now on the server. kayweb.com.au/blogs/Web-Development/Generating-screenshots-using-FFmpeg

    Something like this, But this thumbnail generator puts everything into one image. I need to be able to choose with thumbnail I want to use.
    http://www.tothepc.com/archives/make-movie-caps-screenshots-with-free-video-thumbnails-maker/

    Anyone have any suggestions ?

  • Does simple rescaling from 1080p to frame height of 720 lead to 720p ?

    12 août 2015, par nburk

    I want to convert a 1080p to 720p and also lower resolutions eventually.

    I have been using ffmpeg for all my video processing activities so far, and would simply approach this task using the following command :

    ffmpeg -i tos.mov -vf scale=-1:720 tos_0x720.mov

    I understand that this will rescale my video to a new frame size having 720 pixels set as a fixed height and the width dynamically calculated.

    What I am not sure about are the implications regarding the quality factors of the video when using ffmpeg this way.

    1. Is it valid to assume that running this command will output a perfect HD 720p quality video ?
    2. What would be a benefit of using dedicated video conversion software to accomplish my goal compared to running the above command ?