Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (47)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (7023)

  • Youtube processing stuck at 95%

    12 août 2016, par lcssanches

    Well I’m trying to upload a video recorded with ffmpeg, but Youtube fail at processing it.

    Here’s the video information :

    enter image description here

    enter image description here
    Here’s the link https://www.youtube.com/watch?v=7XlxLh0usnY.

  • audioread.NoBackendError on augmented audio files

    23 mars 2019, par elongated space

    Problem :

    I have applied a number of augmentation techniques such as pitch shift and stretching to a number of wav clips and have outputted them to a folder - Windows 10 plays these clips fine.

    However, when i try to load these clips with librosa using the following code :

    wav_clip, sample_rate = librosa.load(file_path, mono=True, sr=None)

    i get "audioread.NoBackendError"

    What I’ve Tried :

    Installed ffmpeg using this video https://www.youtube.com/watch?v=xcdTIDHm4KM. to confirm it worked i entered the following into windows command line :

    "ffmpeg -version"

    Where i got an output of the version and configuration details.

    I have also tried to import ffmpeg from the list of available packages in PyCharm, but i still get the error.

    Am i missing something ?

    All the original, unaltered wav files work and load fine.

  • Turn Mp4 File into Portrait Video

    5 avril 2022, par Tech Breaker

    I recently programmed a bot, which uses the Twitch API to scrape Twitch videos, and then post them on YouTube. This is my youtube channel if you want to see an example : https://www.youtube.com/channel/UCuhWw8LbPWdkybIF9olAszw

    


    The problem that I am having is I want to find a way to convert these regular twitch videos, into youtube shorts which I can automatically upload. The facecam does not need to be included, and the entire video can just be compressed into a 9:16 format.

    


    I already tried FFMPEG but I don't know if I am doing it correctly, and really need help or advice on how to do this.

    


    Here is an example of a video I would try to convert :
https://www.youtube.com/watch?v=hZecXrvd6_g

    


    (excuse the explicit language, this is just the first video I saw on my bot channel)

    


    Tldr : Convert mp4 file into a 9:16 video format

    


    EDIT :

    


    Command i ran : ffmpeg -i video.mp4 -vf scale=1280:720 output.mp4