Recherche avancée

Médias (91)

Autres articles (14)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (2684)

  • Get decibel array from audiofile

    16 avril 2020, par R. Adang

    I am creating a React Native app and want to show list of decibel numbers based on an audio file.
so the goal is -> input : audiofile(mp3,wav etc) output : array of decibels for samples with X milliseconds. I know about FFMPEG, but I do not know how to use it to get the array. I see there is a waveform option, but this returns a png instead of the volume data.

    


  • Decoder error not supported error when render 360 video on web application

    19 avril 2024, par Mattia Pompita

    I'm developing a simple scene with A-Frame and React.JS where there is a videosphere that will create and render when video are fully loaded and ready to play.

    


    My goal is to render 4k (to device who can reproduce it) video on videosphere to show at the users the environment.
On desktop versions all works fine also with 4K videos while on mobile works only for 1920x1080.

    


    I already check if my phone can render a 4k texture video and it can render untill 4096, I checked also that video.videoWidth are 4096.

    


    The error I have is with decoder

    


    MediaError {code: 4, message: 'DECODER_ERROR_NOT_SUPPORTED: video decoder initialization failed'}


    


    This error will show only on mobile, I can see it through Chrome Developer tools, I already try to re-encode both with Handbrake and ffmpeg but always the same error will appear on mobile.

    


    My video is hosted on Firebase and have this resolution 4096x2048
I'm testing on Google Pixel 7 already checked if WEBGL can render 4k texture on it

    


    I can't understand why decoder works fine on Desktop and not on mobile only with 4k video and with 1920x1080 it works

    


    This is the only component rendered on page

    


    import React, { useEffect, useRef } from 'react';

const XIV_360_Abbazia_San_Silvestro_4K = () => {
  const assetsRef = useRef(null);
  const videoRef = useRef(null);
  const sceneRef = useRef(null);


  return (
    
      
        > {
            console.log('CAN PLAY THROUGH');
            let videoSphere = document.createElement('a-videosphere');
            videoSphere.setAttribute('src', '#video360');
            sceneRef.current.appendChild(videoSphere);
          }}
        />
      
      

      > {
          videoRef.current.play();
        }}
      >
        PLAY
      
    
  );
};

export default XIV_360_Abbazia_San_Silvestro_4K;


    


  • FFMPEG How to zoom in and then zoom out in one command line

    29 septembre 2017, par BOORO

    I’m making a video with zoom effects.

    I want put in zoom in and then zoom out like beat react effect.

    "zoompan=z='if(lte(zoom,1.2),zoom+0.0200,zoom-0.0065)':x='iw/2-(iw/zoom)/2':y='ih/2-(ih/zoom)/2':d=500"

    It was my first idea but it just stuck at 1.2 zoom ratio.

    I want zoom starts with 1 and then once zoom reached 1.2, then zoom out to 1.0 slowly.

    What am i supposed to do ?