Recherche avancée

Médias (91)

Autres articles (112)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (13893)

  • Merge commit ’60198742ff851f11a3757c713fc75a9c19b88566’

    22 août 2013, par Michael Niedermayer
    Merge commit ’60198742ff851f11a3757c713fc75a9c19b88566’
    

    * commit ’60198742ff851f11a3757c713fc75a9c19b88566’ :
    movenc : fix detection of 64bit offset requirement

    Conflicts :
    libavformat/movenc.c

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/movenc.c
  • AWS Lambda tmp disk limit with ffmpeg

    21 avril 2022, par Almaju

    I am using AWS Lambda to render videos using ffmpeg. It is a basic function that downloads external clips, merges those, then uploads the result to S3.

    &#xA;

    This function needs to be able to scale quickly because I need to generate a lot of videos in a short time period.

    &#xA;

    The problem is that I reach the /tmp disk limit of 512MB because the same lambda environment is reused by the different requests. I have increased that memory limit to temporarily solve the problem but it does not feel scalable.

    &#xA;

    I have looked into EFS but the requirement to use a VPC and a NAT to have internet access sounds really heavy for my simple needs.

    &#xA;

    Is there a way to output the result of ffmpeg directly in S3 (thus not needing the temporary folder) ? Or perhaps force to respawn a clean lambda environment if the memory is about to be full ?

    &#xA;

  • Speed of the x265 and ffmpeg HEVC based encoding

    10 mai 2015, par userDtrm

    I’m trying to perform a real-time encoding of a video using HEVC with ffmpeg. I’m able to achieve the required performance when running the x265 encoder separately without the support of ffmpeg. This way the my system can perform the encoding at 30 frames per second. However, my requirement is to create a MPEG-TS stream with the encoded content and therefore, the video is encoded with the ffmpeg as follows :

    ffmpeg -s:v 1280x720 -i input.yuv -c:v libx265 -x265-params crf=20:keyint=25:fps=25:preset=ultrafast -f mpegts out.ts

    Strangely, the performance of the encoding is reduced drastically and I’m only able to achieve an encoding performance of just 10 frames per second.

    Is this a problem of the multiplexing process within ffmpeg ?. Could someone please help me to resolve this issue.

    Thanks.