Recherche avancée

Médias (91)

Autres articles (64)

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

  • FFMPEG command not running in script

    5 novembre 2012, par viv

    I have created a shell script to convert video, the command is working properly inside the shell script if the file to be converted is in the current directory, whereas if the file is inside directory then i am getting error.
    When I echoed the command inside script and ran it manually then it's running properly.

    Below is the command :

    ffmpeg -i $1 -strict experimental -vcodec libx264 -vf "scale=-1:$video_height" -y $tmp_file 2>&1

    Any ideas ?

  • How to Run FFPlay from lua ?

    25 avril 2016, par NSA

    I have put together a windows C++ based lua shell application to test my media server. As part of this I need to launch FFPlay and have it play rtsp uri’s. I have tried :

    os.execute('ffplay.exe rtsp://uri')

    And I have tried creating a C++ hook into my shell where I added a C++ function that then did :

    system("ffplay.exe rtsp://uri");

    Unfortunately in both cases FFPlay starts but doesn’t create a window with the video in it. I am able to confirm that FFPlay is running by checking the list of processes running. Can explain how I can run FFPlay from my process and get it to create its video window on windows ?

    Thank you

  • How to use my FFMPEG code in Automator (Mac)

    23 juin 2023, par 3EK

    I have an ffmpeg code that converts .mov files to .mp4 files. I would like to set up a 'watch folder' system on my mac, so that when I drop files into a specific folder, it will automatically convert the file using my FFMPEG code.

    


    I have tried to add my FFMPEG code into the Automator app (mac) as a shell script, but it did not work and gave me the error *"The action “Run Shell Script” encountered an error : “zsh:3 : no matches found : .mov”"

    


    The FFMPEG code that I am using is...

    


    for i in *.mov; do ffmpeg -ss 4 -i "$i" -c:v libx264 -preset ultrafast -b:v 20M -vf format=yuv420p -c:a aac "mp4/${i%.*}.mp4"; done;


    


    Is anyone able to help me work out why this is not working please ?

    


    Greatly appreciated !

    


    Best,
John