Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (6)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (2461)

  • ffv1 : add a Vulkan-based decoder

    10 mars, par Lynne
    ffv1 : add a Vulkan-based decoder
    

    This patch adds a fully-featured level 3 and 4 decoder for FFv1,
    supporting Golomb and all Range coding variants, all pixel formats,
    and all features, except for the newly added floating-point formats.

    On a 6000 Ada, for 3840x2160 bgr0 content at 50Mbps (standard desktop
    recording), it is able to do 400fps.
    An Alder Lake with 24 threads can barely do 100fps.

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/ffv1dec.c
    • [DH] libavcodec/hwaccels.h
    • [DH] libavcodec/vulkan/Makefile
    • [DH] libavcodec/vulkan/common.comp
    • [DH] libavcodec/vulkan/ffv1_common.comp
    • [DH] libavcodec/vulkan/ffv1_dec.comp
    • [DH] libavcodec/vulkan/ffv1_dec_rct.comp
    • [DH] libavcodec/vulkan/ffv1_dec_setup.comp
    • [DH] libavcodec/vulkan/ffv1_rct.comp
    • [DH] libavcodec/vulkan/ffv1_vlc.comp
    • [DH] libavcodec/vulkan/rangecoder.comp
    • [DH] libavcodec/vulkan_decode.c
    • [DH] libavcodec/vulkan_ffv1.c
  • Rails Thumbnails for videos being uploaded to S3

    20 octobre 2015, par Dani

    I have a rails application where I need to upload videos to an amazon s3 bucket alongwith their thumbnails. I am using ffmpeg to generate thumbnails and I am using carrierwave to handle video uploads. Here is my video uploader class

    class VideoUploader < CarrierWave::Uploader::Base
     include CarrierWave::Video
     storage :fog
     def store_dir
        "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
     end
     def extension_white_list
       %w(mp4 flv)
     end
    end

    The video uploads fine and the column for video url is set in videos table but I want to generate thumbnail and upload it as well. I know I have to use ffmpeg here but don’t exactly know how to do it.

    Any help will be appreciated.

  • Execute ffmpeg in AWS ec2 instance windows

    15 janvier 2016, par Napster

    Im trying to execute ffmpeg command on amazon’s windows ec2 instance using elastic beanstalk.
    I intend to merge multiple videos into a single video using a .net application.

    I cant see the file being created in the folder, so cant confirm if ffmpeg is working. The merging is working perfectly on local deployment and i can view the merged video.
    I have configured my deployment for the required permission of file creation rights (.ebextensions) and it is working.

    Im not sure what i need to do to allow execution of ffmpeg command, and im stuck here. Ive been through the forum and found similar links related to linux but not windows.

    Being a newbie im really not sure how to proceed.
    Are there any permission/steps i need to perform to allow ffmpeg command to execute on ec2 instance. If any ? please share.

    -