![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#1 |
Too lazy to set a custom title
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
|
Anyone do video conversions in mass scale?
Lets say I had to convert 1800+ member vids into multiple streams for multi-device playback and an adaptive stream for apple devices, who would you recommend? (hosting solution built in would be much appreciated, too)
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#2 |
Confirmed User
Industry Role:
Join Date: Nov 2014
Location: Montreal
Posts: 101
|
If you are a bit technical you can build your own with the FFmpeg library. This is what I did. I used Pandastream and Zencoder (more expensive) in the past and they both work really well.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#3 | |
Too lazy to set a custom title
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
|
Quote:
Thanks for the links |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#4 |
Confirmed User
Industry Role:
Join Date: Apr 2004
Posts: 1,888
|
it's not that hard to do it yourself, just need one or two days to setup and adjust setting.
We use a dedicated server based on a Intel(R) Xeon(R) CPU E3-1241 + SSD which is enough to encode our videos using ffmpeg and ftp to upload the video once encoded. I don't know if ffmpeg can do adaptive stream but for the other format it's quite easy and result is good
__________________
AV Revenue High Quality Sites to Promote Official Twitter account Official Telegram account Skype: avrevenue Telegram: avrevenue |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#5 |
Confirmed User
Industry Role:
Join Date: Mar 2003
Location: Littleton, Colorado. USA
Posts: 558
|
Encoding.com does it, and they have system to do HLS and send to your Amazon S3 Bucket.
Amazon has Elastic Encoder that will do it and drop the files right in your Amazon S3 bucket
__________________
http://TrueBabes.com/ |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#6 |
Too lazy to set a custom title
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
|
Yeah - we just tried encoding.com and we ended up with a 1700$ estimate after just 200 and some videos. And their support was slow to figuring out what we would owe.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#7 | |
Too lazy to set a custom title
Industry Role:
Join Date: Oct 2002
Location: The Boonies
Posts: 12,860
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#8 | |
Confirmed User
Industry Role:
Join Date: Apr 2004
Posts: 1,888
|
Quote:
__________________
AV Revenue High Quality Sites to Promote Official Twitter account Official Telegram account Skype: avrevenue Telegram: avrevenue |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#9 |
Confirmed User
Industry Role:
Join Date: Aug 2014
Posts: 141
|
I provide PinkEncode - Plateforme automatisée d'encodage vidéos - mp4, flv, avi, watermark
You send xml with videos list with the param do you want to the server, it do the job and send you xml with encode status. You juste have to make a little piece of php to put the encoded videos where you want . You can watermark, make thumbs, extract with the duration do you want, choose the type of file you want (flv, mp4) ... Contact me for more information and price. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#10 |
It's 42
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
|
Code:
#!/bin/bash #Start in the parent directory with the files ls -RdX $PWD/* >out grep -i "\.flv" out >out2 error lol 1 min Converting AVI to MP4 with ffmpeg Use a LINUX server with ffmpeg installed and configured. You might want to use rsync to move the files and convert them on a non production server or go down for "maintenance". |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#11 |
It's 42
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
|
Code:
#!/bin/bash #Start in the parent directory with the files ls -RdX $PWD/* >out grep -i "\.flv" out >out2 sed -i 's/\.flv//g' out2 for word in $(cat out2) do ffmpeg -i $word.flv -c:v libx264 -b:v 1000k $word.mp4 done |
![]() |
![]() ![]() ![]() ![]() ![]() |