Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (50)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5876)

  • Revision c4d1ab573a : Removing memset calls inside idct/iht functions. Making appropriate memset insi

    2 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decodframe.c


     Modify /vp9/decoder/vp9_idct_blk.c



    Removing memset calls inside idct/iht functions.

    Making appropriate memset inside decode_block now.

    Change-Id : I8e944194668c830de08271c8fb6e413251c201d8

  • 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.