Dear Org mode hackers, This is a recipe for a bug involving Org player, though the bug might be in Org mode itself. 1. Start Emacs with `emacs -Q -l setup.el'. This opens the day agenda, which looks like this. ,---- | Day-agenda (W21): | Friday 23 May 2014 | test-case: 1:23...... Scheduled: TODO Buckle my shoe | 8:00...... ---------------- | 10:00...... ---------------- | 12:00...... ---------------- | 14:00...... ---------------- | 14:12...... now - - - - - - - - - - - - - - - - - - - - - - - - - | 16:00...... ---------------- | 18:00...... ---------------- | 20:00...... ---------------- `---- I did not expect the TODO item to be scheduled for 1:23am. That time is part of the link and is intended for Org player's use. The text of the TODO item is this: ,---- | Buckle my [[file://shoe.ogg::1:23][shoe]] `---- This is the format Org player uses to specify where in the media file to start playback. From `org-player.el': ,---- | ;;; Links can also specify track positions. When a link contains a track | ;;; position, playback will start at that position in the track. For example: | ;;; | ;;; [[file:/path/to/song.mp3::2:43]] Starts playback at 2 min 43 sec. `---- Best, Thomas