Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (22)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (7044)

  • C# FFmpeg Dynamic-Link Library

    25 juillet 2022, par iltan

    I need FFmpeg as dll for C#. I want to do something like ;

    


    static void Convert(Stream onlyAudioStream, Stream onlyVideoStream, string path)
{
    FFmpegNameSpace.FFmpeg ff = new FFmpegNameSpace.FFmpeg();
    ff.AddInput(onlyAudioStream);
    ff.AddInput(onlyVideoStream);
    ff.Save(path);
}


    


    And the problem is I don't know how can i get ffmpeg dll.

    


    Example :
I did this before in libwebp. Things we need to do to get libwebp dll ;
1- Download libwebp source
2- Open Visual Studio 2019 Developer Tools
3- Run command in libwebp source directory "nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output"
4- Done you will find dll in output directory

    


    Edit : I searched a lot and couldn't find the solution. I decided to use ffmpeg.exe whenever I need it.
Thank you all

    


  • Open avi file with OpenCV : ffmpeg ?

    28 juin 2012, par CTZStef

    This question is related to a previous question I asked here.

    I read on the Willow Garage website dedicated to OpenCV that we do not have to take care of ffmpeg while installing OpenCV since version 1.2.x. Here it is.

    However, some questions asked here on Stackoverflow suggest the contrary.

    So, what should I do ? Do I have to recompile OpenCV and do some special operation related to ffmpeg to get it to, finally, open avi file on my Linux system ?

  • How to change frame rate of live stream using FFmpeg

    4 décembre 2012, par chiv

    I have created a streaming application, which takes video data from live source. Is there any transcoding tool which will receive stream from my streaming application and changes frame rate by transcoding the stream and re stream on another location ?

    currently I'm Struggling with FFmpeg code to use in Visual Studio 2010. And I wanted to integrate FFmpeg code in my application.

    Using FFmpeg.exe I'm able to transcode static files.I wont get any proper example how to transcode/change frame rate of live stream using FFmpeg. I tried,following command to re-stream on another IP.

         ffmpeg -re -i "rtp://my_ip:1234" -r 60 -f rtp "trp://my_ip:4321"