Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (38)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (9545)

  • What options I should use to rescale video without skewing them in FFMPEG Rails ?

    5 juin 2019, par ADMAT Bandara

    The main issue happens when it processes the recalling

    All videos uploading from Apple iOS will process nicely.
    But all videos uploading from Android devices are getting skewed.

    In my rails app, I am using Carrierwave:Video and FFMPEG to process videos with the help of delayed jobs.

    class VideoUploader < CarrierWave::Uploader::Base

     include CarrierWave::Video
     include CarrierWave::Video::Thumbnailer

     # For carrierwave_backgrounder
     include ::CarrierWave::Backgrounder::Delay

     version :rescaled do
       process encode_video: [
         :mp4,
         resolution: "640x480", # Aspect ratio is preserved automatically
         audio_codec: "aac",
         custom: "-strict experimental -q:v 0 -preset slow -g 30",
         callbacks: { after_transcode: :set_success }
       ]
     end


     version :thumb do
       process thumbnail: [{format: 'png', quality: 10, size: 400, strip: true, logger: Rails.logger}]
       def full_filename for_file
         png_name for_file, version_name
       end
     end

    This is correct videos screenshot

    https://drive.google.com/open?id=1D0aNWcVxtL6DbTwBmWWIGzUUuyEyWNOG

    This the video screenshot after video process with FFMPEG

    https://drive.google.com/open?id=1vilExHoan2UuRPH9RbiZig58H1TwyewA

    (It’s like vertically pressed)


    Please help me, if you know a solution

  • Revision 6d6fdd9c3d : VP8 encoder for ARMv8 by using NEON intrinsics 3 Add subtract_neon.c - vp8_subt

    6 janvier 2014, par James Yu

    Changed Paths :
     Modify /test/subtract_test.cc


     Modify /vp8/common/rtcd_defs.pl


     Delete /vp8/encoder/arm/neon/subtract_neon.asm


     Add /vp8/encoder/arm/neon/subtract_neon.c


     Modify /vp8/vp8cx_arm.mk



    VP8 encoder for ARMv8 by using NEON intrinsics 3

    Add subtract_neon.c
    - vp8_subtract_b_neon
    - vp8_subtract_mby_neon
    - vp8_subtract_mbuv_neon

    Change-Id : If9a17a093478552e3e3276eeaa3f098b9021d08c
    Signed-off-by : James Yu <james.yu@linaro.org>

  • Revision aeeaa67987 : VP9 common for ARMv8 by using NEON intrinsics 15 Re-write - vp9_lpf_horizontal_

    8 février 2014, par James Yu

    Changed Paths :
     Modify /test/lpf_8_test.cc


     Modify /vp9/common/arm/neon/vp9_loopfilter_16_neon.c


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/vp9_common.mk



    VP9 common for ARMv8 by using NEON intrinsics 15

    Re-write
    - vp9_lpf_horizontal_4_dual_neon
    in vp9_loopfilter_16_neon.c

    Change-Id : Ie14f63d352f9564ad01db3939a61d91cf6d21a31
    Signed-off-by : James Yu <james.yu@linaro.org>