Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (78)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • How i can do hls segments save to S3 withot save output to disk [on hold]

    6 mars 2019, par Rinat Mukhamedgaliev

    I want to transcode media with ffmpeg on AWS Lamda to HLS and save output to AWS S3 without store on storage.

    My command :

    ffmpeg -i 1.mp3 -vn -ac 2 -acodec aac -preset ultrafast \
     -strict -2 -b:a 64k -threads 8 -f segment -segment_format mpegts \
     -segment_time 20 -segment_list 01-fiery-crash.m3u8 01-fiery-crash%05d.ts
  • indeo3 : add @file doxy and a link to multimedia wiki documentation

    17 mai 2011, par Stefano Sabatini

    indeo3 : add @file doxy and a link to multimedia wiki documentation

  • Incorrect values for song length (duration) in Mp3tag after ffmpeg FLAC to MP3 conversion

    29 mars 2024, par Clueless

    The problem

    


    As per this post, I use the following command to convert a flac file to mp3 while keeping all metadata :

    


    ffmpeg -i input.flac -ab 320k -map_metadata 0 -id3v2_version 3 output.mp3


    


    When inspecting the converted mp3 file by right-clicking it, going to properties and then details, everything looks in order. The value for "Length" is correct.

    


    enter image description here

    


    When inspecting the converted mp3 file with Mp3tag, the value for "Length" is different. From my testing, the "Length" value is consistently about 28% of what it is supposed to be.

    


    enter image description here

    


    Normally, this isn't an issue. Most music players I use, read the correct length value, same as Windows. However, I've recently discovered that Spotify Mobile for some reason ignores the length value that can be seen in the Windows panel and uses the one that can be seen in Mp3tag.

    


    I want to figure out what command I should use so that after the flac file has been converted to mp3, Mp3tag shows the correct length, and there by, Spotify Mobile reads the correct length as well.

    


    What I have tried

    


    1.
After converting the file to Mp3, I've tried reencoding the mp3 file into a... mp3 file using the following command :

    


    ffmpeg -i original.mp3 -c:v copy -c:a mp3 -vn -ar 44100 -ac 2 -b:a 320k copy.mp3


    


    enter image description here

    


    As can be seen in the image above, this fixes the issue and the length is showing correctly in Mp3tag and in Spotify Mobile.

    


    Issues with this : Reencoding reduces quality and I don't know how to combine the previous flac conversion command and this one into one line.

    


    2.
I tried https://cloudconvert.com/flac-to-mp3 and it worked. The length is displayed correctly in Mp3tag. (What commands did they use on the server ???)

    


    enter image description here

    


    Issues with this : I don't want to rely on a cloud service for conversion, I have a lot of files to convert and I'd prefer it to be done locally.

    


    Some demo files

    


    Here is a folder with a flac file, a bad mp3 file (wrong length) and a good mp3 file. It looks like if you preview the music in google drive, it also plays the wrong length for the bad mp3 (39s not 2m19s), while vlc, groove player, spotify (desktop not mobile) all play the correct full length (2m19s) for the bad mp3 file.

    


    Folder : here's the link