Recherche avancée

Médias (91)

Autres articles (67)

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

  • How can I add individual thumbnails to several MKV files (possibly using ffmpeg) ? [closed]

    1er juillet 2024, par oli_vi_er

    I would like to add thumbnails to many MKV files.

    


    I know how to use MKVToolnix GUI to achieve this, but I'd need to do it for dozens of files, so I'm wondering if there's a quicker way to do it in batch.

    


    I think that it may be possible with ffmpeg, and I already have the JPEG images with the same name as the MKVs, but I don't really know how to use ffmpeg's command lines, let alone batch processing.

    


    So, is it possible to do this ?

    


  • How do i convert (pulled from device) individual frames to a video file on linux and push it back to the same directory

    31 mars 2012, par RiASh

    First of all i have frames on my SD Card and frames are there in separate folders for each video..

    what i want to do is that i just want to make REALLY simple Java application for user(just a button to make video files) on the linux OS whose ActionEvent Handler pulls in all the individual frames and converts it to a video..deletes all the frames from the SD Card and then pushes the video file back to the same directory of SD Card..

    i wanted to know how do i pack frames into a video file on Linux(Ubuntu)..i think there is something ffmpeg but i dont know much..
    Can someone provide a example..please .. the images are named as image0000 to image9999

    and is it possible to create video file from those frames AND EVEN having sound in them using ffmpeg..?

    Can adb pull and push files without SD Card being connected..

    And finally wanted to know how do i run shell commands like adb pull, push, ffmpeg from JAVA..

    THERE ARE i think 4 QUESTIONS here but all related so i thought better ask them together..Thanks in advance ! :)

  • Compiling FFMPEG on CentOS DigitalOcean

    29 juillet 2015, par coder_uk

    I set up a DigitalOcean instance running CentOS 6.5 and successfully followed the guide to compile FFMPEG (https://trac.ffmpeg.org/wiki/CompilationGuide/Centos). Hurrah !

    But of course I realised that by default, DigitalOcean creates a root user and so ffmpeg now lives in /root/bin/ffmpeg. Which isn’t ideal because when I want to exec the ffmpeg bin from nginx, I would have to run nginx as root for it to have permission.

    Questions ...

    1) Long-shot, but presumably if I change the owner of the ffmpeg binary to nginx, it still won’t work, because nginx won’t be able to access the /root folder it is in. Correct ?

    2) I could run nginx as root (’user root’). But this seems like a very bad idea. Correct ?

    3) Which leaves me with the option of creating a new user, and then compiling ffmpeg into its home folder. But : which user ? EC2 creates ’ec2-user’, so should I make my own equivalent for DO ? But then won’t I have to run nginx as that user, else I’ll run into the same problem ?

    Or should I compile ffmpeg into the ’nginx’ home folder, if indeed it has one ? Is that how it is supposed to be done ?

    Since compiling ffmpeg takes ages, I don’t want to keep doing it, and the static files all seem very out of date. Thanks