Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (46)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9596)

  • Anomalie #4630 : Indiquer n° de version git

    5 février 2021, par jean marie

    Oui, au moins le hash git (et le lien) qui permet de savoir quelle est la version installée.
    Sinon, aucun moyen de connaitre la version installée et c’est pas des moyens détournés qu’on peut se rendre compte qu’il y a un souci (cf https://www.mail-archive.com/spip-dev@rezo.net/msg70983.html ).

  • Compensating for missing audio frames in video with ffmpeg [on hold]

    9 décembre 2015, par Ned Rockson

    I consistently have a problem with videos recorded via webrtc where the audio is missing for the first few seconds. With ffmpeg I see that the first audio frame is generally at PTS >1.0.

    This doesn’t cause an issue in isolation as video players are smart enough to adjust, but when using ffmpeg to merge two videos and mix their audio, they end up having offset audio because each audio stream is treated as starting at 0.

    Is there a way to compensate for this offset when using amerge or amix filters ?

  • Regarding converting Webm to Mp4 using ffmpeg and getting problem with not receiving audio from the converted video file

    14 septembre 2022, par MikeEl

    I'm using react-ffmpeg npm package for converting the webm video format to mp4 format. Like here, this is the function which is used to convert the format.

    


    const convertFunc = async(fileurl) => {
console.log("run");
const file = fileurl
console.log("before", file);
await FFMPEG.process(
  file,
  "-f mp4 -c:v libx264 -an -profile:v baseline -level 3.0 -movflags +faststart -hide_banner",
  function (e) {
    console.log(e);
    
    const video = e.result;
    const reader = new FileReader();
      reader.readAsDataURL(video);
      reader.onload = function (e) {

        
        console.log("Process time: ",reader.result);
      };
    console.log(video);
  }
);


    


    }

    


    


    -f mp4 -c:v libx264 -an -profile:v baseline -level 3.0 -movflags +faststart -hide_banner

    


    


    this line is used for convert the format. But when I received the converted file. It is muted or there is no audio in it.
In the ffmpeg command "-an" is used to remove audio from output converted video. But when I remove it from the above command then also audio is not there.

    


    any solution ?
Thanks for you answers in advance.