Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (45)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • upload video on local host

    20 avril 2017, par chan jack

    when i upload video on local host have error #Unable to detect any supported library#

    @internal_information = InternalInformation.new(internal_information_params)

    if @internal_information.update(internal_information_params)

    respond_to do |format|

    this is my code below

    Model

    class InternalInformation < ApplicationRecord
     has_attached_file :video , styles: {
                                         :medium => { :geometry => "640x480", :format => 'mp4' },
                                         :thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10 }
                                     }, :processors => [:transcoder]
     validates_attachment_content_type :video, content_type: /\Avideo\/.*\Z/
    end

    Controller

    def create
    @internal_information = InternalInformation.new(internal_information_params)

    respond_to do |format|
     if @internal_information.save
       format.html { redirect_to @internal_information, notice: 'Internal information was successfully created.' }
       format.json { render :show, status: :created, location: @internal_information }
     else
       format.html { render :new }
       format.json { render json: @internal_information.errors, status: :unprocessable_entity }
         end
       end
     end

     # PATCH/PUT /internal_informations/1
     # PATCH/PUT /internal_informations/1.json
     def update
    respond_to do |format|
     if @internal_information.update(internal_information_params)
       format.html { redirect_to @internal_information, notice: 'Internal information was successfully updated.' }
       format.json { render :show, status: :ok, location: @internal_information }
     else
       format.html { render :edit }
       format.json { render json: @internal_information.errors, status: :unprocessable_entity }
         end
       end
     end

    Show

    <%= javascript_include_tag 'swfobject' %>
    <p>&lt;%= notice %></p>

    <p>
     <strong>Title:</strong>
     &lt;%= @internal_information.Title %>
    </p>

    <p>
     &lt;%= video_player({:file => @internal_information.video.url(:medium), :image => @internal_information.video.url(:thumb)}) %>
    </p>

    &lt;%= link_to 'Edit', edit_internal_information_path(@internal_information) %> |
    &lt;%= link_to 'Back', internal_informations_path %>
  • Convert a 3d graphic into rgb array

    22 avril 2017, par Praveen C. Naik

    Im working on a project that has 3d led cube (256*256*256).What software do i use to design the 3D model and for projecting the same on the LED cube.The LED used is RGB but the answer need not be for RGB. Even monochromatic LED is also fine.
    Ive tried checking for MATLAB , FFMPG , OPENCV and AUTOCAD.But none of then help.

    Objective : CREATE 3D MODEL => GENERATE MATRIX/ARRAY of colors => Project the matrix onto LED cube.
    The generator has to be dynamic such that any changes in to 3d model should reflect on the LED cube.Any well known simulator as such is encouraged.Please count on the above mentioned software if they can do the same, image processing through matlab/opencv is new for me.

    Input file : graphic 3D model drawn.
    Output file : array of representation of color(any).

  • How to install opencv_contrib on Windows ?

    6 mai 2017, par How to code

    I want to use the function createFisherFaceRecognizer() in python,but when I wrote down model = cv2.createFisherFaceRecognizer() or cv2.face.createFisherFaceRecognizer()
    Error will occurs :

    Traceback (most recent call last) :
    File "C :\Users\Administrator\Desktop\My projects\test\RecognizeMe.py", line 5, in
    model = cv2.face.createFisherFaceRecognizer()
    AttributeError : ’module’ object has no attribute ’face’

    I referenced the methods online and found that I should install opencv_contrib.But I was stucked when I was configureing the opencv using CMake.
    Error :

    CMake Error at cmake/OpenCVUtils.cmake:895 (file) : file DOWNLOAD
    HASH mismatch

    for file: [E:/opencv-3.1.0/sources/opencv-3.1.0/3rdparty/ffmpeg/downloads/35fe6ccdda6d7a04e9056b0d73b98e76/opencv_ffmpeg_64.dll]
     expected hash: [35fe6ccdda6d7a04e9056b0d73b98e76]
       actual hash: [5171a37169c5e695c556c85dc3103d13]
            status: [28;"Timeout was reached"]

    Call Stack (most recent call first) : 3rdparty/ffmpeg/ffmpeg.cmake:15
    (ocv_download) cmake/OpenCVFindLibsVideo.cmake:206 (include)
    CMakeLists.txt:536 (include)

    CMake Error at cmake/OpenCVUtils.cmake:899 (message) : Failed to
    download opencv_ffmpeg_64.dll. Status=28 ;"Timeout was reached" Call
    Stack (most recent call first) : 3rdparty/ffmpeg/ffmpeg.cmake:15
    (ocv_download) cmake/OpenCVFindLibsVideo.cmake:206 (include)
    CMakeLists.txt:536 (include)

    How to solve this problem ?Thank you for your answer !