Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (10313)

  • vaapi_h264 : Add encode quality option (for quality-speed tradeoff)

    13 avril 2016, par Mark Thompson
    vaapi_h264 : Add encode quality option (for quality-speed tradeoff)
    

    Only supported on VAAPI 0.36 and higher.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/vaapi_encode_h264.c
  • How to optimize/speed up ffmpeg resizing

    16 février 2017, par ALM

    I am trying to quickly compress mp4 videos and wanted to know if there is a better way than I am currently using.

    ffmpeg -i orig.mp4 -preset ultrafast -vf scale=iw/5:-2 out.mp4

    This is currently being run for videos around 2-4 minutes long but I would like to get it as quick as possible. Are there other settings for ffmpeg I should use ?
    This is running on a i7 system with external GPU.

    Thank you

  • Overlaying video with text - ffmpeg speed

    12 février 2017, par Sebadc

    I’m developing an app that has a functionality similar to Snapchat’s, in which you can add text to an existing video and save it on your phone.

    I got this to work using ffmpeg’s "-drawtext" filter. The problem is that I’m getting a noticable delay (20 seconds or so) when adding text to videos, even though they are not too big (around 10 seconds length).

    Can anyone point me in the right direction on how to reduce this delay ? Taking Snapchat as reference, they overlay high quality videos with text with little to no delay.

    I’ve read about extracting the video’s frames and overlaying them manually, but shouldn’t that take longer ?

    Thank you for your help.