Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (16547)

  • The terminal is blocked while configuring ffmpeg by using mingw/msys

    9 décembre 2020, par Make.Liu

    I am trying to compile ffmpeg by mingw, but my terminal is blocked while running configure command and nothing happenenter image description here

    


  • avoiding running of FFmpeg on terminal/cmd

    14 janvier 2021, par Education 4Fun

    I'm using FFmpeg for a small project so I built a GUI basic application for video editing
here is the image
enter image description here

    


    Everything is working fine but I just want to avoid opening the terminal for the FFmpeg process the reason the terminal is opening is because

    


    I used os.system("FFmpeg command here")


    


    so is there a way to import FFmpeg completely and avoid using terminal and run in code
    
if u have any idea please suggest and let me know
    
for gui i used PYQT5 and python to code
    
Thank you

    


    Tried using subprogram but didn't work (worked for normal commands but not for ffmpeg)
I need the output to print also to store in a python variable
Please check the image for more info

    


    enter image description here

    


  • C++ code for ffmpeg terminal command [on hold]

    17 janvier 2018, par KingWealth

    Platform - Linux
    I created a v4l2loopback device by following the guide.
    The following terminal command is used to write the video testsrc.avi into the loopback device /dev/video1

    ffmpeg -re -i testsrc.avi -f v4l2 /dev/video1

    Now the question is, I want the c++ code for the above mentioned to terminal comment.

    Note - c++ code for -f v4l2 /dev/video1 is enough too.

    The actual program and logic is really long and irrelevant to explain.
    The problem is, i want to write ffmpeg avframes into the loopback device but using fwrite is giving disturbed output.