Philipp Wolfer

Results 255 comments of Philipp Wolfer

I experience this in https://github.com/phw/showdown-htmlescape , but without the use of uglify. What happens is that `dist/showdown-htmlescape.js` is a file generated by grunt-contrib-concat, together with a corresponding source map file....

@mikenye I tried the new image from dockerhub. There seems to be an issue with the SSL root certificates, despite the call to `update-ca-certificates` in https://github.com/mikenye/docker-picard/blob/master/Dockerfile#L107

One possibility if the container in general can access the internet but can't connect to musicbrainz.org is that the IP got blacklisted. See the [discussion at the forums](https://community.metabrainz.org/t/cant-connect-to-musicbrainz-org-website-and-picard-doesnt-check-music-on-home-network/339002) for details...

@L1ttleP00l your's is a different issue, and it looks like the libssl issue @mikenye fixed today. You should try pulling the latest image.

You should be able to install this from within Picard in Options > Plugins: - Download the file `recordingdate.zip` from https://github.com/avh4/picard-recordingdate/releases - Place this ZIP file inside your music folder...

> I prefer the solution where we'd support `goi18n extract`, especially because then we could more easily disable the whole embedding of translation files and still have english working as...

*Just to avoid confusion further down (@Goutte understood me correctly): I was referring to `golang.org/x/text/message` with the `golang.org/x/text/cmd/gotext` CLI utility to extract text* `golang.org/x/text` does support both pluralization and changing...

> 3\. There's a (quite new) [go-i18n](https://github.com/ubuntu/go-i18n) lib that promises to do just this, but it does not look like it is finished yet. Just saw that this is actually...

Python has the `sorted` function. If `files` is a list of `mutagen.mp3.MP3` files you could do something like: ```python def get_tracknumber(file): if trck := file.tags['TRCK']: number, total = trck.text[0].split('/') try:...

Something like ```python track_mp3.tags.add(id3.TCOP(encoding=id3.Encoding.LATIN1, text='12345678')) ``` Should work for setting the tag.