Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (108)

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

  • Redirecting ffmpeg result into another file

    22 juin 2015, par Enkri_

    I’m trying to get the size of an input video using ffmpeg, below is the code that I use, what I’m trying to do is to first store the result into a txt file and then do some parsing to get the size of the video :

    $ ffmpeg -i TheNorth.mp4

    The terminal says "At least one output file must be specified"
    Then I tried this :

    $ ffmpeg -i TheNorth.mp4 result.txt

    The terminal says "Unable to find a suitable output format for ’size.txt’"

    So how could I get the result and save it to the specified file ?

  • Redirecting ffmpeg result into another file

    9 mai 2019, par Enkri_

    I’m trying to get the size of an input video using ffmpeg, below is the code that I use, what I’m trying to do is to first store the result into a txt file and then do some parsing to get the size of the video :

    $ ffmpeg -i TheNorth.mp4

    The terminal says "At least one output file must be specified"
    Then I tried this :

    $ ffmpeg -i TheNorth.mp4 result.txt

    The terminal says "Unable to find a suitable output format for ’size.txt’"

    So how could I get the result and save it to the specified file ?

  • Use ffprobe on Sagemaker Jupyter Notebook : /bin/sh : 1 : ffprobe : not found

    2 juillet 2020, par Guu

    I need to use FFprobe to get the metadata(the orientation of the video) of videos on SageMaker Studio. Even I installed FFmpeg and FFprobe via pip install, the notebook doesn't recognize the packages.

    


    /bin/sh: 1: ffprobe: not found

    


    It is tricky since I've already tried to install them on System terminal and it worked, but it still doesn't work on the Image terminal or Jupyter Notebook.

    


    Is that because of the dependencies ? I've checked other ways to get the metadata but couldn't find one working. I could get simple metadata via hachoir-metadata but it didn't give the orientation. Any advice is welcomed. Thanks.