Dobrá připomínka - to jsem také zjistil, ale je to divné - můj telefon pojmenovává právě takhle videa a seděl by i čas (hledám video z 11.11.2017 čas 14:xx). Má to nějaké jednoduché vysvětlení? 
Těžko říct bez znalosti typu filesystému (na Androidu jich může být více typů), ale obecně třeba FAT32 a EXT4 podle mých neúplných znalostí určují, zda je uvedený soubor adresářem podle jednoho příznakového bitu. Takže se pravděpodobně při nějaké kolizi nebo porušení paměti přepsal příznakový bit a Váš film se právě stal adresářem. :-)
U FAT32 je pro ilustraci popis atributů následující, pro podrobnější info si vygooglete FAT32 specifikaci. EXT3/EXT4 je, co si tak vybavuji, poněkud složitější, takže bych se mrknul nejdříve na ten FAT32, v téhle konkrétní oblasti ten princip bude velice pravděpodobně analogický.
ATTR_READ_ONLY (0x01)
The file cannot be modified – all modification
requests must fail with an appropriate error
code value.
ATTR_HIDDEN (0x02)
The corresponding file or sub-directory must
not be listed unless a request is issued by the
user/application explicitly requesting inclusion
of “hidden files”.
ATTR_SYSTEM (0x04)
The corresponding file is tagged as a
component of the operating system. It must not
be listed unless a request is issued by the
user/application explicitly requesting inclusion
of “system files”.
ATTR_VOLUME_ID (0x08)
The corresponding entry contains the volume
label. DIR_FstClusHI and DIR_FstClusLO
must always be 0 for the corresponding entry
(representing the volume label) since no
clusters can be allocated for this entry.
Only the root directory (see Section 6.x below)
can contain one entry with this attribute. No
sub-directory must contain an entry of this type.
Entries representing long file names (see
Section 7) are exceptions to these rules.
ATTR_DIRECTORY (0x10)
The corresponding entry represents a directory
(a child or sub-directory to the containing
directory).
DIR_FileSize for the corresponding entry
must always be 0 (even though clusters may
have been allocated for the directory).
ATTR_ARCHIVE (0x20)
This attribute must be set when the file is
created, renamed, or modified. The presence
of this attribute indicates that properties of the
associated file have been modified.
Backup utilities can utilize this information to
determine the set of files that need to be
backed up to ensure protection in case of
media and other failure conditions.