Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (53)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • avfilter/graphparser : Don't set pointer to one beyond '\0' of string

    23 août 2020, par Andreas Rheinhardt
    avfilter/graphparser : Don't set pointer to one beyond '\0' of string
    

    This happened in parse_link_name() if there was a '[' without matching
    ']'. While this is not undefined behaviour (pointer arithmetic one
    beyond the end of an array works fine as long as there are no accesses),
    it is potentially dangerous. It currently isn't (all callers of
    parse_link_name() treat this as an error and don't access the string any
    more), but making sure that this will never cause trouble in the future
    seems nevertheless worthwhile.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/graphparser.c
  • Gradient is bad in video [closed]

    1er juillet 2023, par Andres Miguel Campos

    I'm trying to capture a css animation with gradient. But when capturing the video I get a bad quality

    &#xA;

    I have used the following css for the screen

    &#xA;

    &#xD;&#xA;
    &#xD;&#xA;
    &#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;&#xA;&#xA;&#xA;&#xA;  <div class="horizontal-gradient">&#xA;&#xA;  </div>&#xA;&#xA;&#xA;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;

    I have also used the following libraries or frameworks

    &#xA;

    &#xA;

    puppeteer-screen-recorder(NodeJS)

    &#xA;

    &#xA;

    &#xA;

    Canvas(JavaScript)

    &#xA;

    &#xA;

    &#xA;

    remotion.dev(Reac and Nodejs)

    &#xA;

    &#xA;

    &#xA;

    Obs

    &#xA;

    &#xA;

    But it still shows me poor video quality

    &#xA;

    Bad Image

    &#xA;

    Any support is welcome

    &#xA;

  • Using ffmpeg output to HLS and Image Stills

    27 novembre 2018, par yomateo

    I want to combine the output from an RTSP stream into both an HLS stream and several image stills. I can do this fine separately (obviously) but i’m having trouble combining things. Can I get a quick hand ?

    Here are my outputs (that works) :

    Outputting HLS streams :

    ffmpeg -rtsp_transport tcp -i '$RTSP_URL'
       -c:v copy -b:v 64K -f flv rtmp://localhost/hls/stream_low \
       -c:v copy -b:v 512K -f flv rtmp://localhost/hls/stream_high

    Outputting image stills :

    ffmpeg -hide_banner -i '$(RTSP_URL)' -y  \
       -vframes 1 -vf "scale=1920:-1" -q:v 10 out/screenshot_1920x1080.jpeg \
       -vframes 1 -vf "scale=640:-1" -q:v 10 out/screenshot_640x360.jpeg \
       -vframes 1 -vf "scale=384:-1" -q:v 10 out/screenshot_384x216.jpeg \
       -vframes 1 -vf "scale=128:-1" -q:v 10 out/screenshot_128x72.jpeg

    Any help is appreciated (I also posted a bounty ^_^)

    Thanks guys !