Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (43)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6503)

  • avfilter/vf_bwdif : Change default to deinterlace all frames

    19 juin 2016, par Thomas Mundt
    avfilter/vf_bwdif : Change default to deinterlace all frames
    

    Signed-off-by : Thomas Mundt <loudmax@yahoo.de>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_bwdif.c
  • avfilter/vf_interlace : fix numerical options

    23 août 2018, par Thomas Mundt
    avfilter/vf_interlace : fix numerical options
    

    Regression since 9c01cdb94e24aaf50f867a0a5c42b097c17c42b1

    Signed-off-by : Thomas Mundt <tmundt75@gmail.com>

    • [DH] libavfilter/tinterlace.h
    • [DH] libavfilter/vf_tinterlace.c
  • ffmpeg watermark has no affect on video

    4 juin 2016, par Felix

    I’m using carrierwave to upload movies, and I want to use stremio-ffmpeg to wartermark the uploading video.

    for this I have the following function in the uploader

    gem 'streamio-ffmpeg', '1.0.0'

    The function is now in the carrierwave uploader and looks like this :

     process :watermark_movie

     def watermark_movie
         options = {watermark: "#{Rails.root}/public/images/logo_klein.png", resolution: "640x360", watermark_filter: {position: "RT", padding_x: 10, padding_y: 10},custom: '-strict experimental'}
         #debugger
         tmp_path = File.join File.dirname(current_path), "tmp_file.mp4"
         file = FFMPEG::Movie.new(self.file.path)
         file.transcode tmp_path, options
         File.rename tmp_path, current_path
     end

    At the moment there are no more errors, problem is that the watermark is not working.

    What is my failure in this ?