Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (104)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (7682)

  • Extract Motion Vectors From x264 source code

    27 mai 2021, par Essam Aly

    If you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.

    


  • Extract Motion Vectors From x264 source code

    27 mai 2021, par Essam Aly

    If you are familiar with the x264 source code, where in the code I can extract the MV (motion vectors) of each frame ? Can you point please to a line of code I can intercept and save the MVs to disk ?
Thank you.

    


  • Porting code from Windows 7 to Linux using using NReco.VideoConverter

    2 février 2017, par Omar Salem

    I trying to port code from Windows 7 to Linux (RHEL 7). I am using the component to connect to a webcam and capture audio and video to a file and also capture frames as images to files. On Windows 7 I used the following code which works :

    var ffMpegTask = videoConv.ConvertLiveMedia(
       @"/dev/video0", // @"video=Logitech ... :audio=Microphone ..." on Windows
       "v4l2",                       // "dshow"  on Windows
       rawBmpOutputStream,
       null,              
       new ConvertSettings() {
               CustomOutputArgs = String.Format(" -r 5 -t 10 output.wmv -r 5 -t 10 output.mp3 -r 5 -t 10 -f rawvideo -s {0}x{1} -pix_fmt bgr24 ",
                       outputWidth, outputHeight)  });    

    This code compiles and executes on RHEL and MonoDevelop but does not generate the audio, video or image files. The webcam blinks for a second and goes away.