Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (74)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6816)

  • 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