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 (5927)

  • To create an android app where I am able to add color filters to a recorded video

    27 novembre 2014, par Ramesh Kannan

    I’m trying to create an app where I am able to add color filters to a recorded video.

    I’ve done research and I can’t piece it all together. I’ve looked into using OpenCV to record a video. The problem is, when I use the sample APK in OpenCV it trigger out the camera and color effects are applied simultaneously then stored as a picture but what I need is after recording the video to apply color effects in the preview mode. I don’t know how to implement OpenCV in my android application.

    I’ve also heard about "ffmpeg" which is an open-source platform for recording, converting, playing and streaming video and audio but I didn’t get any idea to implement it to my project.

    Lastly, I’ve looked into OpenCV. Tried using OpenCV, but I haven’t had much either.

    Do you have steps / procedures / code / example on integrating video filters (FFMPEG) on Android for the following needs.

    • I used to record the video,
    • then dividing it as frames and apply filters.
  • FFMPEG 360 mp4 to SBS for Google cardboard

    3 mai 2022, par mike

    I've created some 360 degree mp4 videos froma GoPro max camera.
I would like to display these on Google cardboard (side by side) in the same way as Youtube, whilst modifying the playback speed with FFMPEG.

    


    I haven't found the right flags to convert the image to SBS with v360 or stereo3d

    


    Any suggestions ?

    


  • ffmpeg -vg -filtercomplex, create gif with color kway and limited fps

    3 février 2020, par daniel

    I need to create a gif file with color key (greenscreen) with 10FPS and specified size. I try to combine -vg and -filter_complex :

    ffmpeg -i testdatei-c.avi -vf "fps=10,scale=320:-1:flags=lanczos" -filter_complex "[0:v]chromakey=0xFFFFFF,split[v0][v1];[v0]palettegen[p];[v1][p]paletteuse" output.gif

    I get the error :

    Filtergraph 'fps=10,scale=320:-1:flags=lanczos' was specified through the -vf/-af/-filter option for output stream 0:0, which is fed from a complex filtergraph.
    -vf/-af/-filter and -filter_complex cannot be used together for the same stream.