Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4821)

  • How to add telemetry data from a video to jpg file ?

    10 septembre 2021, par code0x00

    I have a 360deg video that is created by Go Pro Fusion and has telemetry data in it. I want to extract the telemetry data and put inside of jpg file.

    


    I am extracting images using ffmpeg :

    


    ffmpeg -i VIDEO.mp4 -r 5 img%d.jpg


    


    How can i extract metadata(including telemetry data) for each frame and put that metadata inside jpg image of that frame.

    


    I tried using

    


    exiftool -ee -a -u -U -TagsFromFile video.mp4 img1.jpg


    


    But all the metadata that appear in video does not appear in image.

    


    I tried this :

    


    exiftool -track1:VideoFrameRate=29.97  img1.jpg 


    


    But getting this warning :

    


    Warning: Sorry, Track1:VideoFrameRate doesn't exist or isn't writable
Nothing to do.


    


    20.00


    


    I get this from video. But unable to set in jpg as mentioned above.

    


    And how to ensure that the images are assigned with the exact GPS data ?

    


  • Need a better understanding of HTML 5 audio/video meta data use and placement

    24 juin 2012, par nicoz

    I have spent a significant amount of time researching HTML 5 audio and video, however I am stuck understandong the encoding of the meta data. It seems that in my research, using programs like Handbrake (ffmpeg) it is recommend to check of "web optimized" (also using this type of setting when say exporting from imovie). I have concluded that this has to do with moving the file's meta data to the beginning of the file. This then gives the player/browser the info it requires to play immediately without having to wait to load the entire file.

    So here is where I am confused and the questions

    Does this only apply to mp4 files ? (I need to also encode/transcode .ogv and .webm)
    Where does the mp4 MOOV atom fit into this or is that what people are referring to, when they say move the meta data to the front of the file ?

  • Ffmpeg stream problems with buffer data

    27 juin 2023, par Erdem Ün

    my code is not working. I cannot conversion. how can I fix ?

    


    readable event working but Error output is

    


    


    data undefined

    


    


    try {

    const readStream = fs.createReadStream('./ses.webm');

    const command = childProcess.spawn('ffmpeg', ['-i', 'pipe:0', '-c:a', 'aac', 'pipe:1']);

    readStream.pipe(command.stdin);
    command.stdout.on('readable', (a) => {
      console.log('data', a)
    });

    command.on('data', (code) => {
      console.log(`ffmpeg işlemi tamamlandı. Çıkış kodu: ${code}`);
    });
  } catch (error) {
    console.log(error)
  }