Recherche avancée

Médias (91)

Autres articles (49)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5565)

  • ffprobe : show probe_score in the format section

    29 août 2013, par Stefano Sabatini
    ffprobe : show probe_score in the format section
    

    Should address trac ticket #2621.

    • [DH] doc/ffprobe.xsd
    • [DH] ffprobe.c
  • avformat/flvdec : Show unknown tags at debug level

    5 juin 2015, par Michael Niedermayer
    avformat/flvdec : Show unknown tags at debug level
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/flvdec.c
  • How to show Images from a video as preview for playlist

    1er février 2017, par Guruprasad Rao

    You guys Have seen Youtube right. There while you are watching a video, You will also get related videos preview alongwith link. So how we can get it from video itself.. Is it possible to do so.. I am able to get the url from database and display it.. and when the link is clicked it will be played in a jquery player.. So before that a preview of that or you can say playlist of that will be available for user.

    I have updated my code with a link I found.. But still I am not able to get the Image from Video.. Is there anything wrong in my code.. Please correct me if I am wrong..

    Below is my front end code :

    <form runat="server">
       <div runat="server" style="height:100%;width:100%">
           <div>Latest Videos</div>

       </div>

       </form>

    and I am adding all my video links from backend on page load as shown below :

      try
       {
           con.Open();
           com = new SqlCommand("Select videourl, videoname from video order by [vid] desc",con);
           DbDataReader dr = com.ExecuteReader();
           DataTable dt = new DataTable();

           if (dr.HasRows)
           {

               int i = 0;
               dt.Load(dr);
               int rows = dt.Rows.Count;


               for (i = 0; i &lt; rows; i++)
               {
                   HtmlGenericControl d = new HtmlGenericControl("div");
                   HtmlGenericControl s = new HtmlGenericControl("span");
                   string[] link = new string[rows];
                   string[] name = new string[rows];                    

                   d.Attributes.Add("class", "plst");
                   s.Attributes.Add("class", "text");
                   link[i] = dt.Rows[i]["videourl"].ToString();
                   name[i] = dt.Rows[i]["videoname"].ToString();
                   string videothumb = link[i];
                   string svthto="**Path to save Image**";
                   string imgpath=GetVideoThumbnail(videothumb, svthto, 30);

                   sb.Append("<a i="i" href=" + " class=" + ">" + name[i] + "</a>");
                   s.InnerHtml = sb.ToString();
                   d.Controls.Add(s);
                   examples.Controls.Add(d);
                   sb.Clear();


               }
           }


       }
       catch(Exception ex)
       {
           ex.Message.ToString();
       }

    public string GetVideoThumbnail(string path, string saveThumbnailTo, int seconds)
    {
       string parameters = string.Format("-ss {0} -i {1} -f image2 -vframes 1 -y {2}", seconds, path, saveThumbnailTo);
       string pathToConvertor = "C:\\Program Files\\ffmpeg\\ffmpeg.exe";
       var processInfo = new ProcessStartInfo();
       processInfo.FileName = pathToConvertor;
       processInfo.Arguments = parameters;
       processInfo.CreateNoWindow = true;
       processInfo.UseShellExecute = false;

       File.Delete(saveThumbnailTo);

       using (var process = new Process())
       {
           process.StartInfo = processInfo;
           process.Start();
           process.WaitForExit();
       }

       if (File.Exists(saveThumbnailTo))
           return saveThumbnailTo;
       else
           return "File not Found";
    }

    and here is the image of what I am getting until now :
    Sample

    Please note : I am not concentrating on you tube videos. I am questioning regarding the videos which I store in server side folder. So if there is any jquery technique or any sort of technique to do this then please let me know. :)