Recherche avancée

Médias (91)

Autres articles (94)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (12000)

  • Accord.Video.FFMPEG stream display in Accord.Controls.VideoSourcePlayer

    13 juin 2020, par Kapil Dave

    I am new in camera programming. For learning purpose I have download Accord-Framework C# source code.

    



    Thus if we have JPG or MPEG Stream then we can easily display in Accord.Controls.VideoSourcePlayer.

    



    But if we have FFMPEG Stream then how can we display in Accord.Controls.VideoSourcePlayer.

    



    Please anyone can guide me ?

    



    Thanks in advance

    


  • Display YUV/RGB frames on FFPLAY window

    22 novembre 2013, par Zax

    I have integrated a custom decoder on FFMPEG framework. The output of this decoder is YUV420 frames, which if required i can convert it to RGB24 frames.

    These frames are generated in one of my custom functions. So in order to render these frames on FFPLAY window what has to be done ? Is there any specific syntax or procedure to follow ?

    I'm really new to FFPLAY and have searched enough over this topic on net, but have not got anything related to this issue. If anyone can provide any answers or suggestions regarding this, it will be of great help to me.

    Thanks in advance.

    —Regards

  • What is the most efficient way to trim and join multiple videos in ffmpeg ?

    27 avril 2020, par Patrick Oshea

    I have a python program that downloads a bunch of .mp4 videos into a directory for me and after running a few audio matching algorithms I need to trim the videos to a minute and eventually concantenate them all together.

    



    As of right now I do the following things to a video :
Trim it to a minute
Resize the videos so they're all the same size
Apply a picture to the video
And then pad the video (this is due to a weird glitch that occurs if I try joining all the videos together which results in the audio and video not being synched)

    



    Is there any way to combine some of the steps or things I should make sure I'm doing to do this as fast as possible ? Thank you in advance !