Recherche avancée

Médias (91)

Autres articles (78)

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

  • what is the exact path to specify in php for ffmpeg for windows

    17 janvier 2014, par user3196597

    i'm new to ffmpeg..and i've been trying to figure out the exact path to specify while running it in a php exec() function the code below runs fine in terminal but not in php :

      1)c:/ffmpeg/bin/ffmpeg -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1


      2)c:/xampp/htdocs/video/ffmpeg/bin/ffmpeg.exe -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2<&1

    that works fine in terminal but not in php, i think the problem is with the path specification..can anyone tell the exact path to use while working in windows,please ??

    thanks in advance friends :D

  • Input and output path in Android

    16 juillet 2014, par user3675966

    I am using FFMPEG to make a video editor. I stuck when selecting a folder :

    1/ I will show "File Manager" to user. They can choose a folder then return a path. How can choose a folder and get its path. For example : /sdcard/videokit/.

    enter image description here

    Here is my code, I must choose a mp4 file (not a folder I want).

    public void openFolder()
    {
       Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
       Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
           + "/sdcard/");
       intent.setDataAndType(uri, "folder|video/mp4");
       startActivityForResult(Intent.createChooser(intent, "Select Folder"),PICK_VIDEO_OUTPUT_REQUEST);
    }

    Thank you in advance !

  • mov : Read alternate absolute path in dref alis

    7 avril 2015, par Vittorio Giovara
    mov : Read alternate absolute path in dref alis
    

    Absolute paths can be stored in alis type 2 and 18 according to my research :
    the first is the canonical MacOS filepath, with path level separated by
    colons, and the volume name within the filepath, while the second should be the
    absolute filesystem path from the mount point.

    • [DH] libavformat/mov.c