Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (30)

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

  • avformat/mxfenc : Fix guess frame_rate

    3 septembre 2024, par Nicolas Gaullier
    avformat/mxfenc : Fix guess frame_rate
    

    The time_base was a bad guess.

    Currently, fate-time_base test data assumed that overriding the input
    time_base would affect the frame_rate, but this behaviour is not
    documented, so just fix the fate data now that this is fixed.

    Fix regression since 10185e2d4c1e9839bc58a1d6a63c861677b13fd0 :
    previously, when streamcopying, the time_base was guessed from the
    frame_rate considering it is often constant, so guessing the frame_rate
    back from the time_base was often not a problem.

    To reproduce :
    ffmpeg -i fate-suite/mpeg2/dvd_still_frame.vob -an -c copy out.mxf

    Signed-off-by : Nicolas Gaullier <nicolas.gaullier@cji.paris>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/mxfenc.c
    • [DH] tests/ref/fate/time_base
  • ffmpeg - adding white background to complex png command

    5 août 2022, par Uriel Romano

    I have a complex concatenation of commands working perfectly :

    &#xA;

    ffmpeg -r 24 -i "D:\batches\S3025C-SV_"%%03d.png -vf "scale=out_color_matrix=bt709,eq=gamma=1:saturation=1,fps=25, crop=trunc(iw/2)*2:trunc(ih/2)*2" -color_primaries bt709 -color_trc bt709 -colorspace bt709 "D:\batches\S3025C-SV.mp4"

    &#xA;

    Now I need to add a white background to this mp4 render, as ffmpeg is using a black one by default. I've found the following command here :

    &#xA;

    -filter_complex "[0:v] setpts=PTS-STARTPTS [graphs]; [1:v][graphs] overlay=shortest=1 [out]" -map "[out]"

    &#xA;

    How could I combine this operation into the first one ? I've tried a couple of different syntaxes but couldn't get it to work.

    &#xA;

    Thanks for your help !

    &#xA;

  • How to convert my 16:9 size MKV video to 4:3 size AVI video file

    10 avril 2013, par Bimal Rekhadiya

    I have a video in MKV format and it's size is 720x304 (16:9 ratio) size video.

    I want to convert it to AVI format (using xvid video codec). The output file size should be 480x360 (4:3 ratio) and also want to keep the original (16:9) ratio so it should be cinemascope (black areas at top and bottom).

    I am on Ubuntu Linux so I can use mencoder, avconv(ffmpeg) or any tool that work on Linux.

    I tried this command :

    avconv -i sample.mkv -vcodec libxvid -r 25 -b 1200 -aspect 4:3 -q 1 t.avi

    But the problem is that the video is stretched to 4:3 and I want to keep original video's ratio and want to add black boxes at top and bottom so it will look like a "CinemaScope".

    What is the best way to do this ?