Recherche avancée

Médias (91)

Autres articles (30)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (5668)

  • 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