Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (103)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8507)

  • 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

    


  • "unwinding" a tall picture from a scrolling video

    9 août 2021, par rem

    How do you "unwind" or perhaps stitch together one tall image from a video scrolling (vertically) at a constant pace ? Think end credits on feature movies.

    


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