Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (100)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10140)

  • FFmpeg memory leak in fragmented MP4

    2 mai 2018, par Daniel Ben-Hoda

    When using the FFmpeg console for saving an RTSP stream to a fragmented MP4 file I noticed there is a small memory leak.
    It leaks approx 3-4 MB per hour (when each frame is a fragment and 30 fps).

    The following command was used :

    ffmpeg.exe -i rtsp://10.50.1.16/media/video3 -vcodec copy -an -f mp4 -frag_duration 1000 -movflags empty_moov+default_base_moof+omit_tfhd_offset -loglevel quiet "c:\MemoryLeakTest.mp4"

    you can see here a perfmon set over 5 days

    This leak seems to be linear in time and related to the number of fragments written to the file.

    It was also reproducible also with the FFmpeg libraries.

    Has anyone encountered something like this ?

  • FFmpeg memory leak in fragmented MP4

    20 avril 2017, par Daniel Ben-Hoda

    When using the FFmpeg console for saving an RTSP stream to a fragmented MP4 file I noticed there is a small memory leak.
    It leaks approx 3-4 MB per hour (when each frame is a fragment and 30 fps).

    The following command was used :

    ffmpeg.exe -i rtsp://10.50.1.16/media/video3 -vcodec copy -an -f mp4 -frag_duration 1000 -movflags empty_moov+default_base_moof+omit_tfhd_offset -loglevel quiet "c:\MemoryLeakTest.mp4"

    you can see here a perfmon set over 5 days

    This leak seems to be linear in time and related to the number of fragments written to the file.

    It was also reproducible also with the FFmpeg libraries.

    Has anyone encountered something like this ?

  • Android ffmpeg simple JNI wrapper

    15 juin 2017, par user1504495

    I’ve been trying to use an ffmpeg binary with command line access for a while now and getting nowhere (Using runtime.exec)
    It looks like the only way I’ll be able to get it to work is using a wrapper in C to access the built ffmpeg libraries using JNI...
    Main problem : I haven’t coded C for more than one and a half decades now and wouldn’t know where to begin...

    I just need 3 operations, I need to add audio to a video file, I need to concatenate two video files and if possible I need to rotate a clip by 90 degrees (but I could do without this)...

    Does anyone have any example code that could work for me, or some good places to start (I’ve already exhausted much of the first pages of various google results to no avail)...

    Any help would be greatly appreciated !