Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (47)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (4123)

  • Adding animated text / subtitles to a video

    1er novembre 2023, par gmanIL

    I'd like to write some code that gets an mp4 file and a subtitles json and create some kind of animated subtitles like shown on reels and shorts on every socail network.

    


    For now, I'm using ffmpeg and ASS (SSA) format subtitles to display subtitles with various sizes, colors and fonts but it does not support animation.

    


    I've started looking into remotion or maybe using After Effect templates somehow.
Any idea how this can be done ?

    


  • How to match two audio files ?

    24 novembre 2014, par Janak Prajapati

    I am trying to develop script which compares two audio file.

    Lets say this is two audio music file recorded by Artist

    file1 : it is original song sung by an artist (Uploaded by admin)
    file2 : it is a file recorded by user. i.e user sings it and upload it to server

    now i want to check how closes is file2 to file1.

    Means i need to check if both songs match or not in terms of Lyrics, singing and all.

    I have searched many thing like audio fingerprinting , ffmpeg library and all it did not worked for me.

    I will go for any web technology you suggest.

    Please help me to find solution.

    Thanks.

  • ffmpeg normalized mp3 audio and album art went missing

    29 août 2022, par SomeoneInNeedOfHelp

    I used below ffmpeg command to normalized audio of my songs and the album art is missing after running below command

    


    ffmpeg -i "Original.mp3" -af loudnorm=I=-18:LRA=4:TP=-1 -ar 44100 -map 0:v -b:a 192k "Normalized.mp3"


    


    ffprobe Original.mp3

    


    Input #0, mp3, from 'Original.mp3':
  Metadata:
    encoded_by      : Switch Free Home Version © NCH Software
    comment         :
    disc            : 1
    track           : 0
    album_artist    : Artist
    genre           : Pop
    artist          : Artist
    title           : Song Title
    album           : Song album
    date            : 2001
  Duration: 00:04:15.91, start: 0.000000, bitrate: 200 kb/s
  Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 192 kb/s
  Stream #0:1: Video: mjpeg (Baseline), yuvj420p(pc, bt470bg/unknown/unknown), 1279x1280 [SAR 96:96 DAR 1279:1280], 90k tbr, 90k tbn, 90k tbc (attached pic)
    Metadata:
      title           : thumbnail
      comment         : Cover (front)


    


    ffprobe Normalized.mp3

    


    Input #0, mp3, from 'Original.mp3':
  Metadata:
    encoded_by      : Switch Free Home Version © NCH Software
    comment         :
    disc            : 1
    track           : 0
    album_artist    : Artist
    genre           : Pop
    artist          : Artist
    title           : Song Title
    album           : Song album
    date            : 2001
    encoder         : Lavf58.67.100
Duration: 00:04:15.92, start: 0.025056, bitrate: 265 kb/s
  Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 192 kb/s
    Metadata:
      encoder         : Lavc58.12
  Stream #0:1: Video: png, rgb24(pc), 1279x1280 [SAR 1:1 DAR 1279:1280], 90k tbr, 90k tbn, 90k tbc (attached pic)
    Metadata:
      title           : thumbnail
      comment         : Cover (front)


    


    How can I keep the album art from the source file ?