Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (53)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7496)

  • Making use of -w option in pyinstaller does not start/create the subprocess in python

    15 novembre 2018, par User

    I am making use of python to invoke ffmpeg to start and stop video capturing. I do not want to the console window appear when my python exe starts. The code I have currently to start and stop video recording is below,

    cmd = '\\ffmpeg\\bin\\ffmpeg.exe -loglevel quiet -f gdigrab -framerate 30 -i desktop -vcodec libx264 -pix_fmt yuv420p -preset slow -crf 0 -threads 0 ' + '"' + final_file_for_video_processing + '"'

    def stop_screen_recording():
       sub_process.stdin.write("q".encode())
       stdOutput, stdError = sub_process.communicate()


    def stop_screen_recording(cmd):
       startupinfo = subprocess.STARTUPINFO()
       startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
       global sub_process
       sub_process = subprocess.Popen(cmd, startupinfo=startupinfo,
       stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
       sub_process.wait()

    The challenge faced is, when I build the exe using
    pyinstaller -w —onefile python_file_name.py the recording does not begin. Note : The -w is to not show the console window.

    If I were to make use of pyinstaller and build the exe in the following way,
    pyinstaller —onefile python_file_name.py then recording of the video begins.
    Note : Without the -w command it works perfectly fine.

    I want to make use of the -w command since I do not want to show the console window of my python exe. Any insights will help.

  • Android : What should I use when making a native video player ?

    16 juillet 2012, par jtam

    Currently I am doing research for a native video player project, initialy I tried to use ffmpeg as the decoder and return the Byte to java, then I use View::onDraw with Canvas to display frames. Unfortunately, the performance of this method is not good, so I am wondering whether there is anything else that I could use to display frames other then passing to java ?

    Also, other than display the frames, how can I play sound using C/C++ with NDK ?

    Thanks.

  • Revision d5a017300c : General code cleanup. Making code more readable in different places. Change-Id

    4 avril 2013, par Dmitry Kovalev

    Changed Paths : Modify /vp9/common/vp9_mbpitch.c Modify /vp9/common/vp9_setupintrarecon.c Modify /vp9/decoder/vp9_decodframe.c General code cleanup. Making code more readable in different places. Change-Id : Iea92c9a35e64d257ee358879fc04fc926843d52e