Recherche avancée

Médias (91)

Autres articles (87)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (11544)

  • How to get convert a avi to mp4 video in order to get a YouTube 1080p HD video ? [closed]

    26 mai 2012, par Swiss12000

    I have an avi video (31568 kbits/s ->video) (1411 kbits/s -> audio).
    The avi video is 7sec long and the size is 24 597KO.

    I'm trying to convert the avi video with ffmpeg to get a lighter mp4 version.

    In the command line, I've entered :

    ffmpeg -i test.avi test.mp4

    However, when I upload the video on YouTube, I can get a 720p quality maximum.

    My question is : how to convert a mp4 in order to get a 1 080p video ?

    Thank you

    edit : Am I missing something in my question. I get negative opinion, if so what can i do in order to improve my question. I'm totaly new in videos encoding. I also did lot of google reasearch about it but i find no specific answer about that issue... So I feel that my question isn't that much bad... :s

  • How to replace the video track in a video file with a still image ?

    22 février 2021, par cornerstore

    I am trying to use ffmpeg to replace the video track in a video file with a still image. I tried some commands I got from other questions such as the one here

    


    ffmpeg -i x.png -i orig.mp4 final.mp4

    


    ffmpeg -r 1/5 -i x.png -r 30 -i orig.mp4 final.mp4

    


    But these didn't work. I'm not sure which of these arguments are required or not. The output should be accepted by YouTube as a valid video - I was able to simply remove the video track, but apparently they don't let you upload a video without a video track.

    


  • Insert video into another video both of different formats in a time efficient way

    7 février 2017, par Sharath Huddar

    I have an assignment which requires that the code I write takes a large video(1 to 3 hrs) and a smaller video (10-60 seconds) and the smaller video is inserted at intervals of 30 minutes into the larger video. Note that the videos are not necessarily in the same format.

    I tried to encode the large and the small video to a common format (mp4) and then split the large video based on time (while encoding it to mp4) and then concat all the videos in a predefined sequence (also while encoding to mp4). All these operations were carried out using FFMPEG.

    Although this method worked, it too close to 20 hours to perform the whole operation on an Intel NUC (having an i5 processor and 8GB RAM)

    Is there a faster way to do this without compromising on quality ?