Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (65)

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

  • Joining h264 MP4 with ffmpeg Concat without re-encoding

    4 décembre 2013, par Lisa Jacobs

    I am trying to write a batch file to stitch 3 MP4 videos together without having to re-encode them, using a text file mylist.txt :

    file 'video1.mp4'
    file 'video2.mp4'
    file 'video3.mp4'

    I am stitching with : ffmpeg -f concat -i input.txt -c copy output.mp4 but for some reason the second video remains with a blackscreen and/or like if the stream was corrupted. It's like there was no keyframe at the beginning of video2.mp4 ? Video2.mp4 plays fine and does not seem to be corrupted.

  • Stitching 2 videos together side-by-side with ffmpeg in Android [on hold]

    19 juillet 2018, par A. Munny

    I am currently writing an app for Android that is supposed to take two video clips and stitch them together side-by-side into a single file (such that the user can download a single video file that shows these two side-by-side videos playing simultaneously). I was planning on using ffmpeg to achieve this, but could not figure out how to do this. Does anyone know how to achieve something like this, if at all possible ? Additionally, if there is a way to get it done easier using something other than ffmpeg, that solution would also be greatly appreciated. Thank you !

  • ffmpeg concat particular videos from text file

    29 juin 2022, par tejas netradyne

    i wanted to concat only 1st and 4th video from my txt file 'list_of_videos' where my txt file looks like this :

    


    


    file 'video1.mp4'
    
file 'video2.mp4'
    
file 'video3.mp4'
    
file 'video4.mp4'

    


    


    currently i am able to stitch all videos from 1 to 4 using :

    


        ffmpeg_command= 'ffmpeg -f concat -safe 0 -i %s -c copy %s' % \
                            (
                                list_of_videos,
                                video_path
                            )