Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (49)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (7223)

  • Batch Copy Cover Art from One Song to Another (Identical File Names)

    19 juillet 2020, par LeLwrence

    I'm looking for a way to copy the album art from one set of songs to another set of the same songs that don't have the album art. FFMPEG copies the text tags (artist, album, title...) perfectly, but will not copy the embedded album artwork.

    



    I've been trying to batch convert my folder of MP3s into 128k AAC (using FFMPEG and the libfdk-aac codec) files to save space on my phone, but it hasn't copied my album art over to the new songs.
I used the following batch command :

    



    FOR /F "tokens=*" %%G IN ('dir /b *.mp3') DO ffmpeg -i "%%G" -c:a libfdk_aac -b:a 128k "%%~nG.m4a"


    



    EDIT : I tried using the following command to test it out, because stream 0:0 is the audio, and stream 0:1 is the JPEG, however it did not work :

    



    ffmpeg -i Estranged.mp3 -map 0:0 -map 0:1 -c:a libfdk_aac -b:a 128k -c:v copy Estranged.m4a


    



    Here's a paste of the log : http://pastebin.com/dZFsvR7F (I know, it's not the latest version. I had trouble compiling it myself but I'm currently working on it.)

    



    Is there a way to copy the album art (or entire tag, if need be) from songs with an identical name in one folder to the songs in the new folder ?

    



    I.E. C:\Folder1\song.mp3C:\Folder2\song.m4a

    



    Thanks.

    


  • Batch Copy Cover Art from One Song to Another (Identical File Names)

    21 novembre 2016, par LeLwrence

    I’m looking for a way to copy the album art from one set of songs to another set of the same songs that don’t have the album art. FFMPEG copies the text tags (artist, album, title...) perfectly, but will not copy the embedded album artwork.

    I’ve been trying to batch convert my folder of MP3s into 128k AAC (using FFMPEG and the libfdk-aac codec) files to save space on my phone, but it hasn’t copied my album art over to the new songs.
    I used the following batch command :

    FOR /F "tokens=*" %%G IN ('dir /b *.mp3') DO ffmpeg -i "%%G" -c:a libfdk_aac -b:a 128k "%%~nG.m4a"

    EDIT : I tried using the following command to test it out, because stream 0:0 is the audio, and stream 0:1 is the JPEG, however it did not work :

    ffmpeg -i Estranged.mp3 -map 0:0 -map 0:1 -c:a libfdk_aac -b:a 128k -c:v copy Estranged.m4a

    Here’s a paste of the log : http://pastebin.com/dZFsvR7F (I know, it’s not the latest version. I had trouble compiling it myself but I’m currently working on it.)

    Is there a way to copy the album art (or entire tag, if need be) from songs with an identical name in one folder to the songs in the new folder ?

    I.E. C:\Folder1\song.mp3C:\Folder2\song.m4a

    Thanks.

  • How to remove ALL metadata using ffmpeg ?

    2 novembre 2016, par Deep

    I have input file : infile.mp3
    This file contains metadata (artist, genre, etc.)
    I try remove all metadata for output wav file.

    Yes ! I found option :

    -map_metadata -1

    But output is unexpected for me...

    $ ffmpeg -i infile.mp3 -acodec pcm_s16le -ac 2 -ar 44100 -map_metadata -1 ./outfile.wav

    OK !

    $ ffprobe outfile.wav
    Input #0, wav, from 'inp.wav':
     Metadata:
       encoder         : Lavf56.25.101
     Duration: 00:04:00.47, bitrate: 1411 kb/s
       Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001), 44100 Hz, 2 channels, s16, 1411 kb/s

    You see ? encoder metadata exists !

    And in wav header after "subchunk1_id" with "fmt " value I expect "subchunk2_id" with "data" value (clear expected example) :

    $ strings outfile.wav | more
    RIFFFB
    WAVEfmt
    data

    But it is not (LIST, INFOISFT, etc) :

    $ strings outfile.wav | more
    RIFFFB
    WAVEfmt
    LIST
    INFOISFT
    Lavf56.25.101
    data

    Well.. How to really remove all metadata for output file ?