Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (31)

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

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6443)

  • lavd/avfoundation : Add basic transport control observation for capable devices.

    5 mars 2020, par Thilo Borgmann
    lavd/avfoundation : Add basic transport control observation for capable devices.
    
    • [DH] libavdevice/avfoundation.m
  • 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.
Here's the command which I use to repackage clips :

    


    /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

    


    Command is then being run by using :

    


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

    


    Everything is working fine for smaller files (e.g. 5GB) but I also need it to work for files of size up to 15GB.
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.

    


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

    


    def setlimits():
    resource.setrlimit(resource.RLIMIT_AS, (1048576, 1048576))


    


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

    


  • 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
so I put this
    
"fmpeg -s 1280x1344 -pix_fmt yuv420p -vframes 64 -f image2 image%d.png"
on mac terminal
but always return Outputfile #0 does not contain any stream
How can I solve this problem
Help me please