Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (92)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10870)

  • Video editor for android - FFmpeg won't compile on windows ?

    4 décembre 2014, par Zoe

    Im trying to make a video editor for android (I’ve never made an android app before)

    After searching for libraries to use I came across FFmpeg but I’m having trouble getting it to compile on Windows 7.

    I’m currently using Eclipse and have the most recent android SDK and ndk.

    I’ve been trying to follow tutorials on the internet including roman10’s (http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/) but they all seem specific to Linux.

    Yesterday, I thought I’d give up and just dual boot Ubuntu on my windows laptop but of course that was messing up too. I shrank my partition and booted Ubuntu of a USB but the installer was detecting there is no OS on my laptop and not giving me the option to install it alongside windows 7.

    So, can FFmpeg be compiled for android on windows ? Or is there another library I could use to make a video editor that can ?

    Or should I just persist with dual booting ubuntu ?

    Thanks

  • Create fake webcam with ffmpeg on Windows ?

    1er juillet 2022, par Brian

    ffmpeg has all kinds of options in it to record video off of a webcam, transcode video, send video up to streaming servers. Is there a way to loop over a file and make it look like a webcam ?

    



    I found this for Linux :
https://gist.github.com/zburgermeiszter/42b651a11f17578d9787

    



    I've search around a lot to try to find something for Windows, but have not yet found anything.

    


  • How to pause/resume ffmpeg video capture in windows from C# application

    20 septembre 2022, par Anindya Chatterjee

    I am using ffmpeg to capture screen and audio using a C# application. The command I am using to execute ffmpeg as follows :

    



    ffmpeg -f gdigrab -i desktop -f dshow -i audio="Microphone (Realtek High Definition Audio)" -v
codec libx264 output.mp4


    



    Now I want to pause/resume recording and want to control it from the C# application. Is there anyway I can achieve that ?