Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (28)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

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

    


  • 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 cut video, add audio and burn subtitle while cropping video all in one command - ffmpeg

    15 mars 2023, par constantlyFlagged

    Currently I have the following code,

    


    which cuts the video, adds audio and burns subtitle into the video.

    


    -ss 00:00:30 -t -i video.mp4 -i audio.wav -vcodec copy  -acodec copy -map 0:0 -map 1:0 -vf subtitles=subtitle.srt


    


    but I need to crop the video before the subtitle is added. I know it is possible to crop video using the command :

    


    -vf crop=405:720


    


    or using

    


    -filter:v crop=405:720


    


    but I am unable to use it in conjunction with the above statement. What would be the best approch to get the desribed outcome ?