Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (90)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (13043)

  • C# Bitmap Change Pixel color by doing XOR

    17 mai 2018, par Edward

    I try to change RGB color using XOR of RGB.
    example :
    => if value of R on some pixel is 5 = 101
    //Color pcolor = image.GetPixel(j, k) ;

    => then doing XOR with some byte 101 ^ 11111111 = 11111010
    //R[x, w] = (byte) (R[x, w] ^ mykey[0]) ;

    => and replace R with result R=11111010=250
    //image.SetPixel(y, z, Color.FromArgb(A[y, z], R[y, z], G[y, z], B[y, z])) ;

    but the problem is if i read again that result frame, R value that i was change before are not 250.

    using Accord.Video.FFMPEG;

    VideoFileReader reader = new VideoFileReader();
    reader.Open(@"E:\Video\Sample.MP4");
    VideoFileWriter writer = new VideoFileWriter();
    writer.Open(@"E:\Video\Result.MP4", reader.Width, reader.Height, reader.FrameRate, VideoCodec.MPEG4);
    MyFunc(reader, writer)

    public static void Myfunc(VideoFileReader reader, VideoFileWriter writer)
       {
       byte[] mykey = { 0xff, 0x55, 0x00 };
       Bitmap image = new Bitmap(reader.Width, reader.Height, PixelFormat.Format24bppRgb);
       for (int i = 0; icode>
  • libvpx : Support setting color range for vp9.

    9 janvier 2016, par Sasi Inguva
    libvpx : Support setting color range for vp9.
    

    Pass through color range to vp9 encoder. Parse color range in libvpxdec.c.

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Sasi Inguva <isasi@google.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libvpxdec.c
    • [DH] libavcodec/libvpxenc.c
  • How to livestream on Youtube from a video in Google Drive without download ? [closed]

    6 septembre 2023, par Ngọc Hoa Dương

    I have a bunch of video in Google Drive with large size of each video. Instead of download it to local and livesream, Have any solutions that I can livestream from Google Drive on Youtube ?

    &#xA;

    I try to use ffmpeg but seems no support for google drive

    &#xA;