Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (97)

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

Sur d’autres sites (6247)

  • ffmpeg - Replace one word audio in video at different specific timeline [duplicate]

    17 décembre 2019, par Siddharth

    How can i replace one word (newyork to be replaced by california) throughtout the video where speaker says "Newyork". I want that "Newyork" word to be removed from the audio (while keeping video intact) and insert "california" throughout the video at different places.

    I have an audio file where speaker says "California" which i want to replace with "newyork" word.

    How can i do that using FFMPEG ?

  • ffmpeg convert video to size 275x157 pixels [closed]

    21 janvier 2024, par degr

    I want to make video of exact size 275x157, but ffmpeg always make it 274x156.

    


    So far I try next list of commands :

    


    //it from my opinion, it should make vide of my size, and add padding if necessary, but result is same - 274x156
ffmpeg -i ScreenRecorderProject7.mkv  -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4

//more advanced variant of previous command, not work also
ffmpeg -i ScreenRecorderProject7.mkv  -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4

//it told width is not divisible by 2
ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf scale=275x157 -aspect 1.75259 output.mp4

//in description it was mentioned it add 1px pad, but I feel it is wrong; result incorrect
ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf pad="width=ceil(iw/2)*2:height=ceil(ih/2)*2" output.mp4


    


    Also I try to do so with movavi video editor, streamlabs and couple online video converters and always I'm getting wrong resolution. Cant understand what is wrong with that numbers

    


  • Decode demuxed frames produced by ffmpeg wasm using webcodecs

    10 février 2024, par Przemek Gałęzki

    Im trying to use webcodecs VideoDecoder to decode frames demuxed by ffmpeg wasm, but it doesnt seem as straightforward like when I've used mp4boxjs which provides you with necessary data for each demuxed chunk to provide to decode(), or I just dont know how to use ffmpeg wasm to properly extract chunk data

    


    so my questions are :

    


      

    • how do I properly split whole demuxed file into chunks so that I can then provide those to EncodedVideoChunk ?
    • 


    • after I have those split, for each EncodedVideoChunk I also need to provide it with

        

      • timestamp, not sure if performance.now is all right or not ?
      • 


      • data, probably just buffer source of chunk — after i get those right
      • 


      • type, which is either key or delta, no idea when should be which
      • 


      • duration
      • 


      


    • 


    


    I also need to configure decoder, ive used ffprobe-wasm here, but it doesnt provide exact codec name and description.
Even if i know exacly whats the codec name and demux my mp4 video to annexb format which if im correct doesnt need description, im getting error : A key frame is required after configure or flush and that i need to fill out the description field anyways.
I will be happy to get some insights, it seems like a lot to dig into to get it working ..