Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (93)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (11540)

  • keep connection alive in ffserver

    17 août 2014, par Mohammadhzp

    I have a directory which contain some files,I loop around this files and stream them using ffmpeg to ffserver,the problem is when song is over,the client stop receiving the stream.VLC and jwplayer have this problem-which I tested-(although I can fix this problem in jwplayer by adding repeat : true option but I don’t think it’s such a good idea).

    what I need is an option or some trick in ffserver which keep connection alive(at least for a while) so that if a song is over,the next song start automatically(it take 1 second to switch songs),maybe ffserver have a timeout option ?

  • connection timeout between client and ffserver

    28 août 2014, par Mohammadhzp

    I have a directory which contain some files,I loop around this files and stream them using ffmpeg to ffserver,the problem is when song is over,the client stop receiving the stream.VLC and jwplayer have this problem-which I tested-(although I can fix this problem in jwplayer by adding repeat : true option but I don’t think it’s such a good idea).

    what I need is an option or some trick in ffserver which keep connection alive(at least for a while) so that if a song is over,the next song start automatically(it take 1 second to switch songs),maybe ffserver have a timeout option ?

  • ffmpeg not creating a name for image after thumbnail generation C#

    15 août 2012, par Lynx

    I just learn how to use ASP.NET and learn C# last month and now I am having a problem.
    I am experimenting on how to generate thumbnail using ffmpeg in C#. The thumbnail successfully generated in intended folder but there is no name for the image file.
    what I want to do is to create thumbnail and automatically named the jpg file same as the video file.

    I can't figure out what is wrong with my code ; in fact, I don't even understand the code completely as I copied the code from internet and change the folder path of the files.

    private void generateThumbnails(string filename)
    {
       string[] setThum = filename.Split('.');
       string thumb_path = setThum[0] + ".jpg";
       filename = "C:\\ramky\\al.avi";
       string thumbpath, thumbname;//, videopath;
       string thumbargs, inputfile;
       thumbpath = "C:\\ramky\\";
       thumbname = thumbpath + thumb_path;
       inputfile = filename;
       thumbargs = "-i \"" + inputfile + "\" -s 240*150 -ss 1 -vframes 1 -f image2 \"" + thumbname + "\"";

       Process thumbproc = new Process();
       thumbproc = new Process();

       thumbproc.StartInfo.FileName = "C:\\ffmpeg\\ffmpeg.exe";
       thumbproc.StartInfo.Arguments = thumbargs;
       thumbproc.StartInfo.UseShellExecute = false;
       thumbproc.StartInfo.CreateNoWindow = true;
       thumbproc.StartInfo.RedirectStandardOutput = false;

       try
       {
           thumbproc.Start();
           if (thumbproc != null)
           {
               thumbproc.Close();
           }
       }
    }

    Your help will be really appreciated.