Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (34)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (5970)

  • Revision 111238 : On ajoute des classes BEM aux menus et à leurs entrées pour se ...

    31 juillet 2018, par tcharlss@… — Log

    On ajoute des classes BEM aux menus et à leurs entrées pour se simplifier la vie (les anciennes classes sont conservées bien sûr).
    Ce qui donne le markup suivant :
    ul.menu-items
    li.menu-itemsitem
    a.menu-items
    lien
    Ajout également d’un indicateur de la profondeur des sous-menus : data-depth="N".
    Ainsi plus besoin de se casser la tête lorsqu’on veut cibler un sous-menu à une profondeur particulière, par exemple pour un sous-menu de profondeur 2 :
    Avant : .menu-items > .item > .menu-items > .item > .menu-items
    Après : menu-items[data-depth="2"]
    Il y a juste l’entrée de menu « liste ou arborescence de rubriques et d’articles » pour laquelle la profondeur n’est pas indiquée correctement, là tout de suite je n’ai pas le courage de me plonger dans ce labyrinthe lovecraftien.

  • Anomalie #2375 : redirection d’une mauvaise url arborescente

    17 octobre 2011, par James H.

    Au delà du problème, ne serait-il pas plus simple de stocker "nouvelle-rubrique/nouvel-article" comme url dans la table spip_urls au lieu "article/nouvel-article", ça simplifierait la recherche dans cette table et cela éviterait aussi d’avoir "nouvelle-rubrique/sous-rubrique/nouvel-article" au lieu (...)

  • Writing metadata (Artist Name, Song Title, Year, Album, Duration, Genre) to mp3/m4a audio file using youtube-dl (subsequent AtomicParsely error)

    10 décembre 2016, par IRNotSmart

    I am extracting audio only from youtube videos using youtube-dl. I would like to write the metadata (i.e. Artist Name and Song Title, Year, Album, Duration, Genre) into the mp3/m4a file after downloading. My attempt to accomplish this starts with this code :

    @echo off
    youtube-dl --format m4a/mp3 --youtube-skip-dash-manifest --embed-thumbnail -o "%%(title)s.%%(ext)s" --metadata-from-title "%%(artist)s - %%(title)s" --add-metadata 2Y6Nne8RvaA
    pause

    This code produces the following output :

    [youtube] 2Y6Nne8RvaA: Downloading webpage
    [youtube] 2Y6Nne8RvaA: Extracting video information
    [youtube] 2Y6Nne8RvaA: Downloading thumbnail ...
    [youtube] 2Y6Nne8RvaA: Writing thumbnail to: Kungs vs Cookin' on 3 Burners - Thi
    s Girl.jpg
    [download] Destination: Kungs vs Cookin' on 3 Burners - This Girl.m4a
    [download] 100% of 2.99MiB in 00:01
    [ffmpeg] Correcting container in "Kungs vs Cookin' on 3 Burners - This Girl.m4a"

    [fromtitle] parsed title: This Girl
    [fromtitle] parsed artist: Kungs vs Cookin' on 3 Burners
    [ffmpeg] Adding metadata to 'Kungs vs Cookin' on 3 Burners - This Girl.m4a'
    ERROR: AtomicParsley was not found. Please install.
    Press any key to continue . . .

    As you can see, I am able to successfully able to add a few of the tags from the video, but not all of them and the Year is royally screwed up.
    enter image description here

    What is this AtomicParsely error and how do I remedy it ? Do I need this program to correctly add all the Metadata to the file that I want, or can this be accomplished in another way ?

    Referencing Steven Penny’s post, FFmpeg metadata not showing in Windows ?, is solving this problem as simple as using an ffmpeg command ?

    When I do a google search for this song, the first link that shows is the exact link I’m using on YouTube, and the search shows pertinent metadata (see below). I’m not sure if this data is input manually by users, or if Google mined this from the video :
    enter image description here

    I admit that I’m new to using youtube-dl and ffmpeg, but with the help of the commenters on StackOverflow, I’m learning more each day. This post is a follow-up to my previous question : Downloading YouTube to mp3 and writing metadata (artist/song title) to mp3 file using youtube-dl