Whole lotta love.

This commit is contained in:
Dan Chadwick
2024-11-18 18:44:53 -05:00
parent 40324ae10b
commit 13971f626c
80 changed files with 2746 additions and 1495 deletions

View File

@@ -0,0 +1,5 @@
name: Video Compressor
description: 'Compresses videos to smaller size prior to upload.'
core_version_requirement: ^10 || ^11
package: Media
type: module

View File

@@ -0,0 +1,10 @@
<?php
use Drupal\Core\Entity\EntityInterface;
/**
* Implements hook_entity_presave().
*/
function video_compressor_entity_presave(EntityInterface $entity) {
/* dump($entity); */
}