Recherche avancée

Médias (2)

Mot : - Tags -/documentation

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7948)

  • lavc/h274 : transpose IDCT

    28 septembre 2023, par Niklas Haas
    lavc/h274 : transpose IDCT
    

    This is mathematically equivalent to what we were doing before, but
    gives subtly different results due to rounding (rows first vs columns
    first). Doing it this way makes our film grain database generation match
    reference implementation and now produces bit-exact outputs in my
    testing.

    Rename the transposed variables to be a bit less confusing.

    • [DH] libavcodec/h274.c
  • Using FFMPEG to add pillar bars

    10 février 2021, par Ewok BBQ

    I have transferred some film to video files from 16mm (native 4:3). The image looks great.

    


    When I scanned them, I scanned to a native 16:9. As I overscanned them, I got the entire height of the frame, which is what I want. But it also got the soundtrack and perforation. But I want to go just to the frame line on the sides as well.

    


    I can CROP the image down with FFMPEG to remove the information outside of the framing I want [-vf crop=1330:1080:00:00].
I know this will result in a non-standard aspect ratio.
This plays fine on a computer (vlc just adapts to the non-standard).

    


    But for standardized delivery, I would love to keep the native 1920x1080 pixels, but just make everything outside of the centered 1330:1080 black.

    


    Is there a way to specifically select where the pillar bars are ?

    


    I really want to re-encode the video as little as possible.

    


    In that vein, does anyone have a better tool than -vf crop as well ?

    


    thank you very very much.

    


  • Enhance the contrast of only a portion of an image using FFmpeg ?

    27 septembre 2021, par isend

    I am able to enhance the contrast of a whole image with the following command using FFmpeg eq filter :

    


    ffmpeg -i input.png -vf eq=contrast=2 -c:a copy output.png


    


    But can I enhance the contrast of only a portion (say, the second quadrant) of the image using FFmpeg ? I checked another post regarding how to apply a filter only on a certain duration of a film. Can I somehow insert something like enable='between(x,0,10)*between(y,0,10)' into the code above for my purpose ? Thanks.