Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (98)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10721)

  • Merge commit 'bd805964f40f7af83da64645ba83d1e8060a1214'

    21 octobre 2017, par James Almer
    Merge commit 'bd805964f40f7af83da64645ba83d1e8060a1214'
    

    * commit 'bd805964f40f7af83da64645ba83d1e8060a1214' :
    configure : Do not treat JACK as a system library

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] configure
  • InnoSetup python subprocess Popen ffmpeg

    1er juillet 2023, par Chris P

    In my code i have this line :

    &#xA;

    self.p1 = Popen([self.ffmpeg_path,&#x27;-y&#x27;,&#x27;-loglevel&#x27;,&#x27;quiet&#x27;,&#x27;-i&#x27;,self.retransmition_url,&#x27;epalxeis-radio.mp3&#x27;],stdin=PIPE,stdout=PIPE,stderr=PIPE, bufsize=1)&#xA;

    &#xA;

    which read an web radio stream and saves it locally with filename "epalxeis-radio.mp3"

    &#xA;

    Using python to launch the script - works !&#xA;Using pyinstaller to launch the exe - works !&#xA;Using InnoSetup to launch the exe after installation - not working :(.

    &#xA;

    The problem is that there is no epalxeis-radio.mp3 created when i try the third case (innosetup).

    &#xA;

    The ffmpeg_path is : self.ffmpeg_path = os.path.abspath("extra/ffmpeg.exe")&#xA;and there is the extra folder in the same directory which is the innosetup exe.

    &#xA;

    From Windows task manager there is no ffmpeg.exe shown in the tasks list.

    &#xA;

    What wrong ?

    &#xA;

    Edit : I used a smaller script to test the error :

    &#xA;

    from subprocess import Popen, DEVNULL, STDOUT, PIPE&#xA;import os&#xA;import time&#xA;ffmpeg_path = os.path.abspath("extra/ffmpeg.exe")&#xA;retransmition_url = "http://shaincast.caster.fm:40636/listen.mp3?authn76260dc1cdf44a9132c0b63f85d9c67a"&#xA;with Popen([ffmpeg_path,&#x27;-y&#x27;,&#x27;-loglevel&#x27;,&#x27;quiet&#x27;,&#x27;-i&#x27;,retransmition_url,&#x27;epalxeis-radio.mp3&#x27;],stdin=PIPE,stdout=PIPE,stderr=PIPE) as p1:&#xA;    time.sleep(1)&#xA;

    &#xA;

    in pyinstaller exe runs, but in innosetup exe stop immediately.

    &#xA;

  • high memory & cpu usage in ffmpeg C sample when muxing audio and video

    24 juin 2016, par chandu

    I am using the muxing.c example provided with ffmpeg 3.0 version to create an MP4 file (H.264 & AAC) with VS 2013.

    The sample is working fine with default width & height for video, but when I changed the width to 1920 and height to 1080, the sample is taking nearly 400MB & 60-70% cpu usage (using task manager & in Release mode) throughout the program. I have used multi threading also.

    I tried to free the encoded packet after calling write_frame(), but to no success.
    The memory is being released only after calling avcodec_close().

    Could anybody please tell me what I am doing wrong ?

    I am adding link (https://drive.google.com/open?id=0B75_-V7se7tmWUhyM0ItS0kzUVk) to code I tested with VS 2013.

    The screenshot link https://drive.google.com/open?id=0B75_-V7se7tmVm4tUjFtSnNNSHc

    The STREAM_DURATION value in the sample is set to 120 seconds (even tested with 600 seconds) and I changed default Height & Width values of AVCodecContext in add_stream function for video type to 1080 & 1920 respectively. Through out program, it is taking 355 MB, not changing at all. I think, once frame is encoded using avcodec_encode_video2 and written to the file, the memory should be released.

    Please correct me if I am wrong.