transcode

CloudTorrent+Resilio+Plex 搭建

纵然是瞬间 提交于 2019-12-05 17:58:47
version: '3.4' services: CloudTorrent: image: jpillora/cloud-torrent container_name: CloudTorrent ports: - "7777:3000" volumes: - D:/同步:/downloads Resilio: image: resilio/sync container_name: Resilio ports: - "8888:8888" volumes: - D:/同步:/mnt/sync Plex: image: plexinc/pms-docker container_name: Plex ports: - 32400:32400/tcp - 3005:3005/tcp - 8324:8324/tcp - 32469:32469/tcp - 1900:1900/udp - 32410:32410/udp - 32412:32412/udp - 32413:32413/udp - 32414:32414/udp environment: TZ: "Asia/Shanghai" PLEX_CLAIM: "claim从后面得网址获取" #https://www.plex.tv/claim/ ADVERTISE_IP: "http://0.0.0.0:32400/" volumes:

CloudTorrent+Resilio+Plex 搭建

一世执手 提交于 2019-12-05 17:54:35
version: '3.4' services: CloudTorrent: image: jpillora/cloud-torrent container_name: CloudTorrent ports: - "7777:3000" volumes: - D:/同步:/downloads Resilio: image: resilio/sync container_name: Resilio ports: - "8888:8888" volumes: - D:/同步:/mnt/sync Plex: image: plexinc/pms-docker container_name: Plex ports: - 32400:32400/tcp - 3005:3005/tcp - 8324:8324/tcp - 32469:32469/tcp - 1900:1900/udp - 32410:32410/udp - 32412:32412/udp - 32413:32413/udp - 32414:32414/udp environment: TZ: "Asia/Shanghai" PLEX_CLAIM: "claim从后面得网址获取" #https://www.plex.tv/claim/ ADVERTISE_IP: "http://0.0.0.0:32400/" volumes:

FFMPEG 2 Videos transcoded and side by side in 1 frame?

时光毁灭记忆、已成空白 提交于 2019-11-28 17:16:17
I have 2 videos: HEADSHOT.MOV and SCREEN.MOV. They are both large files and I am looking to both shrink (size, bitrate, etc) and place these two side by side in the same, very wide, video frame. The end result would be that when you play the output_video.mp4, you would have a very wide frame with both videos in sync and playing at the same rate. Here is the syntatically incorrect version of what I am trying to do: ffmpeg -i HEADSHOT.MOV -t 00:02:00 -acodec libfaac -ab 64k -vcodec libx264 -r 30 -pass 1 -s 374x210 -vf "movie=SCREEN.MOV [small]; [in][small] -an -r 30 -pass 1 -s 374x210 overlay=10

FFMPEG 2 Videos transcoded and side by side in 1 frame?

旧时模样 提交于 2019-11-27 10:21:13
问题 I have 2 videos: HEADSHOT.MOV and SCREEN.MOV. They are both large files and I am looking to both shrink (size, bitrate, etc) and place these two side by side in the same, very wide, video frame. The end result would be that when you play the output_video.mp4, you would have a very wide frame with both videos in sync and playing at the same rate. Here is the syntatically incorrect version of what I am trying to do: ffmpeg -i HEADSHOT.MOV -t 00:02:00 -acodec libfaac -ab 64k -vcodec libx264 -r