Skip to content

Instantly share code, notes, and snippets.

@t-artikov
Created November 14, 2017 19:48
Show Gist options
  • Save t-artikov/bf412913ddc86dc310818817cb9f69b6 to your computer and use it in GitHub Desktop.
Save t-artikov/bf412913ddc86dc310818817cb9f69b6 to your computer and use it in GitHub Desktop.
import QtQuick 2.0
import Multimedia 1.0
MediaSession {
autoPlay: true
FileSource {
id: source
url: "video.avi"
}
AudioDeviceSink {
id: audioSink
}
WindowSink {
id: videoSink
}
NodeConnection {
from: source.audioOutput
to: audioSink.input
}
NodeConnection {
from: source.videoOutput
to: videoSink.input
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment