vlakoff

Results 81 comments of vlakoff

* Understood about the `*_PEAK` tags, it's expected that they are dropped. * My sample input FLAC file has a `REPLAYGAIN_TRACK_GAIN` of -8.58 dB, the transcoded Opus file has a...

See in the implementation of the `metadata_callback()` function: * [Starting from line 144](https://github.com/xiph/opus-tools/blob/85aa5dbbbbd94461e6142eab6d58a4e64c1dbd61/src/flac.c#L144-L165): Both `REPLAYGAIN_TRACK_GAIN` and `REPLAYGAIN_ALBUM_GAIN` are looked for, and their values are memorised. * [Starting from line 179](https://github.com/xiph/opus-tools/blob/85aa5dbbbbd94461e6142eab6d58a4e64c1dbd61/src/flac.c#L179-L194):...

Refs the related #39 :)

Time of day (point in time) and duration of media (length) are two different things.

Try by using this code in your `` section: ``` html ```

It seems that, indeed, users should expect the script to be loaded _and executed_ with both codes. (it might [break someone's workflow](https://xkcd.com/1172/), but I doubt so.) This had been discussed...

Nowadays, with the second syntax from OP, internally the `success` argument is attached as a `done()` handler to the jqXHR instance; see [ajax.js#L670](https://github.com/jquery/jquery/blob/5d5ea015114092c157311c4948f7cc3d8c8e7f8a/src/ajax.js#L670). That's the same jqXHR instance that gets...

I made some digging, and the `complete` argument gets attached to the returned jqXHR instance since these commits from late 2010 / early 2011: * https://github.com/jquery/jquery/commit/ab3ba4a81252c4357a7aab5f24d765d41d47986e * expand large diffs...

I should have missed something… how could the syntaxes be equivalent, as the callback function signatures are different (`function (script, textStatus)` vs `function (data, textStatus, jqXHR)`)…

Thanks for the useful clarifications. The docs seem to be up-to-date about the supplied `jqXHR` third parameter; it's just omitted in the two examples [here](https://api.jquery.com/jquery.getscript/) that use `.done()`, as they...