Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (78)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (13104)

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

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

  • output video has black..whats wrong in this command ?

    24 décembre 2022, par vikram

    i want add text over video and i am using ffmpeg android lib but edited successfully but output video shows me black screen only

    


    String addtextcommand[] = {
  "-i",
  inputpath,
  "-strict",
  "-2",
  "-vf",
  "drawtext=text=\'onLine1\': fontcolor=white", "-map", "0:a",
  "-codec:v", "libx264", "-codec:a", "copy",
  output
};