Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (93)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6858)

  • Open source media server for web service.

    20 février 2016, par Scarface

    I am currently building a website where users can listen to music, and watch videos. However, I am worried about the media content(music/videos) being downloaded from the website(I initially stuck to the HTML5 video/audio tags), I did a little research and found that my best option to prevent this was by using a media server, I have search for free open source media servers to use, but none seem promising. I thought my best bet was ffmpeg, but I am scared to use it as there it seems to be no longer maintained. Does anyone know of any good media servers out there I could use ?

  • Calling external applications from windows service [duplicate]

    3 novembre 2016, par vvj

    This question already has an answer here :

    I have a windows service as part of my project which has to communicate with external applications to process the files. One of the external application I am using is FFMPEG.exe.

    My problem is when I call FFmpeg or other applications as the new process. After starting the process, it is getting idle. it will neither get execute successfully nor get an exit.

    I am facing this problem with multiple external exe’s and it happens only while calling from the windows service. When I tried the same block of code from a windows forms application, it works perfectly. Below is the sample code I used. Could anyone tell me whats wrong with this.?

    Process FFMPEGProcess = new Process();
    FFMPEGProcess.StartInfo.FileName =@"ffmpeg.exe";                                  
    string strArgument = @" -i  \\MachineName\video\file.mp4 -y -s 176x132 -r 0.2 \\MachineName\Image\File%4d.jpg";
    FFMPEGProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
    FFMPEGProcess.StartInfo.CreateNoWindow = true;
    FFMPEGProcess.StartInfo.UseShellExecute = true;
    FFMPEGProcess.StartInfo.Arguments = strArgument;
    FFMPEGProcess.Start();            
    FFMPEGProcess.WaitForExit();
  • lavc/mdct_template : use lrint instead of floor hack

    26 novembre 2015, par Ganesh Ajjanagadde
    lavc/mdct_template : use lrint instead of floor hack
    

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/mdct_template.c