Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (93)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11566)

  • lavd/pulse_audio_enc : add buffer size control options

    24 novembre 2013, par Lukasz Marek
    lavd/pulse_audio_enc : add buffer size control options
    

    Add options to control the size of the PulseAudio buffer.

    Signed-off-by : Lukasz Marek <lukasz.m.luki@gmail.com>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/outdevs.texi
    • [DH] libavdevice/pulse_audio_enc.c
    • [DH] libavdevice/version.h
  • Output file #0 does not contain any stream How can i solve this problem

    17 mai 2021, par 전재현

    I want to conver yuv file to png file&#xA;so I put this
    &#xA;"fmpeg -s 1280x1344 -pix_fmt yuv420p -vframes 64 -f image2 image%d.png"&#xA;on mac terminal&#xA;but always return Outputfile #0 does not contain any stream&#xA;How can I solve this problem&#xA;Help me please

    &#xA;

  • How can I control and reduce memory used by FFmpeg in AWS Lambda ?

    7 mai 2021, par Martyna

    I set up AWS Lambda (Python 3.8) with FFmpeg as a layer to repackage .mov files to HLS.&#xA;Here's the command which I use to repackage clips :

    &#xA;

    /opt/ffmpeg -i file_name.mov -codec: copy -start_number 1 -hls_time 10 -hls_playlist_type vod -hls_list_size 0 -f hls -master_pl_name master_name.m3u8 master.m3u8

    &#xA;

    Command is then being run by using :

    &#xA;

    subprocess.run(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, preexec_fn=setlimits)

    &#xA;

    Everything is working fine for smaller files (e.g. 5GB) but I also need it to work for files of size up to 15GB.&#xA;That's when Lambda is time outing as it runs out of the memory which I set to maximum 10GB and FFmpeg is using all of it to repackage large clip.

    &#xA;

    I was trying to limit FFmpeg memory usage by using Python Resource module (as you can see by preexec_fn)&#xA;Here's the function :

    &#xA;

    def setlimits():&#xA;    resource.setrlimit(resource.RLIMIT_AS, (1048576, 1048576))&#xA;

    &#xA;

    But it didn't help and resulted in FFmpeg not being run at all...&#xA;Is there a way to control FFmpeg memory usage ? Or maybe I can upgrade my FFmpeg command to be less memory consuming ?&#xA;The main point of repackaging those .mov files is not to change their quality.

    &#xA;