How to create a conversion to transform videos to WebM? #2917
Unanswered
AlejandroAkbal
asked this question in
Q&A
Replies: 3 comments 3 replies
-
@nicolasbeauvais @sp4r74cus @Nks @freekmurze Sorry for tagging all of you, but I think you are the most knowledgeable in this area 🙇 |
Beta Was this translation helpful? Give feedback.
1 reply
-
I still need help, would be willing to pay for it 😅 |
Beta Was this translation helpful? Give feedback.
2 replies
-
Still in need of help... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm trying to optimize all videos that are added to my
Post
Model.I try to accomplish this goal by converting videos to WebM format.
This is my
Post
Model:I currently transform the videos by listening to the
MediaHasBeenAdded
eventAnd then running some chained jobs.
In that
ProcessVideoFromMedia
class I replace the current PostMedia
with a WebM version by adding it again to the Media collectionE.g.
While this works, I'm creating two Models in the database and wasting some CDN data and queries by uploading the content twice.
What I would like to do is create a Media
Manipulation
/Conversion
that transforms any video to WebM.Ideally like this:
I've seen some solutions like #1279 and #1277, but I cannot get them to work.
Can someone help me?
Beta Was this translation helpful? Give feedback.
All reactions