@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add "video/quicktime" as a default Video MIME type

Summary: Ref T11142. H264 video in a Quicktime container works in Safari and Firefox for me (although not Chrome), so include it in the default video mime types.

Test Plan: Uploaded video file from T11142 locally, saw it render with `<video />` properly in Safari.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11142

Differential Revision: https://secure.phabricator.com/D16121

+3
+3
src/applications/files/config/PhabricatorFilesConfigOptions.php
··· 44 44 'video/mp4' => 'video/mp4', 45 45 'video/ogg' => 'video/ogg', 46 46 'video/webm' => 'video/webm', 47 + 'video/quicktime' => 'video/quicktime', 47 48 ); 48 49 49 50 $image_default = array( ··· 71 72 // to set the mood for your task without distracting viewers.) 72 73 'video/mp4' => true, 73 74 'video/ogg' => true, 75 + 'video/quicktime' => true, 74 76 'application/ogg' => true, 75 77 ); 76 78 ··· 78 80 'video/mp4' => true, 79 81 'video/ogg' => true, 80 82 'video/webm' => true, 83 + 'video/quicktime' => true, 81 84 'application/ogg' => true, 82 85 ); 83 86