David Murray

Results 44 comments of David Murray

See `-[DMNetworksViewController tableView:didSelectRowAtIndexPath:]`.

Make sure that your app has the correct entitlements. If you look at the syslog while running this code, an error will appear if your app does not have all...

@inigo333 Apple does not include binary files in their SDKs anymore. You will have to get the binary from the `dyld_shared_cache`. See http://iphonedevwiki.net/index.php/Dyld_shared_cache#Cache_extraction

@maximilianchang I do not think there is a solution to this problem. A few years ago, I researched this problem and discoverd that Apple only allows specific entitlements in provisioning...

It's quite incomplete though. :|

Hi, any news about this? :)

I managed to decode the RTP stream by piping the NAL payloads to ffmpeg and reading the decoded frames from it!

Hi @RouquinBlanc, could you explain this line please? Why do we do this? Is it the NAL header? ```python packet = av.packet.Packet(bytes([0, 0, 0, 1]) + data) ``` Thanks!

@kaligrafy il me semble que c'est possible d'ajuster le _rate_ dans les profils Lua selon les tags OSM. Voir cet exemple: https://github.com/Project-OSRM/osrm-backend/issues/4711 Dans ma maitrise j'avais fait une pondération différente...

Oui, c'est possible avec la fonction `way:get_value_by_key("bicycle")` Voici un exemple (untested!) ```diff function safety_handler(profile, way, result, data) -- convert duration into cyclability if profile.properties.weight_name == 'cyclability' then local safety_penalty =...