Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (98)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7670)

  • Transloadit : How can I replace audio track of a given video ?

    1er septembre 2014, par Stan Wiechers

    I am having trouble forming the steps that would replace/set the audio track of an mp4. Here is my code :

    require "open-uri"
    transloadit = Transloadit.new(:key => ENV['TRANSLOADIT_AUTH_KEY'],:secret => ENV['TRANSLOADIT_AUTH_SECRET'])
    video_encode = transloadit.step('video_encode', '/video/encode', use: ":original",ffmpeg_stack: "v2.0.0", ffmpeg: { i: "http://www.stephaniequinn.com/Music/Allegro%20from%20Duet%20in%20C%...;", map:"1:0", vcodec:"copy", acodec:"copy"})
    store = transloadit.step('store', '/s3/store', :key => ENV['S3_ACCESS_KEY'], :secret => ENV['S3_SECRET_ACCESS_KEY'], :bucket => ENV['S3_BUCKET'])
    assembly = transloadit.assembly(:steps => [ video_encode, store ] )
    response = assembly.submit! open('http://techslides.com/demos/sample-videos/small.mp4')

    I am getting this message :

    'Unable to find a suitable output format'

    Could someone tell me how parametrize ffmpeg and transloadit to set the audio track of a given mp4 ? I tried many variations without any luck.

  • Revision 0b8ae49a05 : Add control to read bit_depth This is needed to calculate high bitdepth PSNR in

    1er mai 2014, par Peter de Rivaz

    Changed Paths :
     Modify /vp9/vp9_cx_iface.c


     Modify /vpx/vp8cx.h



    Add control to read bit_depth

    This is needed to calculate high bitdepth PSNR in vpxenc.c.

    Change-Id : I60cea0e0a263e33ee1a8706517131c4b9fa1aafd

  • ffmpeg how to control fps tbr tbn tbc parameters

    11 juin 2019, par kaka_ace

    RT, i have two avi file,

    A.avi: fps 30 tbr 30 tbn 30 tbc 30.
    B.avi: fps 2 tbr 2 tbn 2 tbc 2.

    the problem is how to set the same value 30 on B.avi ?