Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (111)

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

  • How to detect video has black border on sides with ffmpeg

    13 novembre 2017, par Hassan Ejaz

    How to detect video has black border at vertical/horizontal sides with ffmpeg or any other script in linux.

  • Video is black when framerate is too low using imageio and Python

    28 juin 2018, par palimboa

    I have the following exmaple code :

    import numpy as np
    writer = imageio.get_writer('test.mp4', fps=1)

    max = 800
    resolution = 256

    for idx in range(1, max):
       img = np.zeros((resolution,resolution))
       img[: int((idx / max) * resolution), : int((idx / max) * resolution)] = 255
       img = img.astype(np.uint8)
       writer.append_data(img)

    writer.close()

    The video is just black for fps == 1

    What am I missing here ? I cannot see any clues in the documentation saying I cannot have fps = 1 ?

    EDIT

    For fps >= 10 it seems to be fine.

  • FFMPEG CROP BLACK BARS BAD QUALITY

    9 janvier 2020, par Gustavo Gonzalez

    Hello im using this command to remove the black bars and make the video fullscreen ,

    ffmpeg -i 1.mkv -vf "crop=1920:800:0:140,scale=1920:1080,setsar=1" -c:v h264_nvenc -rc:v vbr_hq -cq:v 0 -b:v 27000k -maxrate:v 26000k -profile:v high -preset slow og1.mkv

    It works good ,
    But the problem is the quality of the video, there is a lot of difference between the original and the new,and apart from that it’s like the video is a bit stretched because of the new crop settings.