Having trouble with the pipeline in gstreamer. Any tips getting this working would be greatly appreciated,
$ gst-launch-1.0 decklinkvideosrc device-number=1 connection=1 mode=16 ! xvimagesink
Setting pipeline to PAUSED ...
ERROR: Pipeline doesn't want to pause.
Setting pipeline to NULL ...
Freeing pipeline ...
$ gst-launch-1.0 decklinkvideosrc ! videoconvert ! xvimagesink
Setting pipeline to PAUSED ...
ERROR: Pipeline doesn't want to pause.
Setting pipeline to NULL ...
Freeing pipeline ...
Search Criteria
Package Details: decklink 14.4.1-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/decklink.git (read-only, click to copy) |
---|---|
Package Base: | decklink |
Description: | Drivers for Blackmagic Design DeckLink, Intensity or Multibridge video editing cards |
Upstream URL: | https://www.blackmagicdesign.com/support/family/capture-and-playback |
Licenses: | custom |
Submitter: | alub |
Maintainer: | goldensuneur |
Last Packager: | goldensuneur |
Votes: | 24 |
Popularity: | 0.000000 |
First Submitted: | 2015-10-03 15:38 (UTC) |
Last Updated: | 2025-02-16 11:39 (UTC) |
Dependencies (4)
- dkms (dkms-gitAUR)
- libpng (libpng-gitAUR, libpng-apngAUR)
- qt5-base (qt5-base-gitAUR, qt5-base-headlessAUR)
- curl (curl-gitAUR, curl-c-aresAUR) (make)
Required by (4)
- mediaexpress
- obs-studio-browser (optional)
- obs-studio-rc (optional)
- obs-studio-tytan652 (optional)
Sources (2)
Latest Comments
« First ‹ Previous 1 .. 16 17 18 19 20 21 22 23 24 25 Next › Last »
LIONHEART commented on 2017-06-12 01:06 (UTC)
Houtworm commented on 2017-06-06 11:06 (UTC) (edited on 2017-06-06 11:36 (UTC) by Houtworm)
Just installed 10.9.3-1 and for me it does not work on the latest kernel.
It says no desktop video device connected (PCIE Device)
I am going to install linux-lts linux-lts-headers and nvidia-lts remove nvidia and try again :)
Edit: It also does not work on LTS Kernel any more, Software is installed and runs but i only get a black screen in media express and OBS
I will spend the day puzzling hope i can find the problem, How is this AUR Package working for others?
disc-kuraudo commented on 2017-06-05 19:28 (UTC) (edited on 2017-06-05 19:44 (UTC) by disc-kuraudo)
Version 10.9.3a2 got released, got it working on the latest kernel.
fthiery commented on 2017-05-12 14:45 (UTC)
@Houtworm nicely spotted, i trusted Firefox's "copy as curl" (and i shouldnt have). Now the AUR should download back automatically (but not if the file is already downloaded).
They have added user agent and content-type checking
curl 'https://www.blackmagicdesign.com/api/register/us/download/46d65f46d6434b16bd69482b0ca7dba3' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0' -H 'Content-Type: application/json;charset=utf-8' --data '{"country":"us","platform":"Linux"}'
Houtworm commented on 2017-05-10 21:58 (UTC)
I am Using the LTS Kernel, If you want i could try the Non LTS version. I am upgrading to a m.2 ssd anyway :)
Alexander-Prime commented on 2017-05-10 09:44 (UTC)
@fthiery, your request JSON is malformed. Fixing it:
{country":"us","platform":"Linux"} <- before
{"country":"us","platform":"Linux"} <- after
Seems to give the desired response.
fthiery commented on 2017-05-10 07:46 (UTC)
@Houtworm are you using the lts kernel or the latest one ?
Houtworm commented on 2017-05-09 23:47 (UTC)
Thanks fthiery,
It works perfectly now.
Capturing with my Blackmagic Intensity Pro 4K on Arch :)
fthiery commented on 2017-05-09 14:50 (UTC)
I replaced the broken download method by a static path (redefine pkgsrc_file after download, by default /tmp/Blackmagic_Desktop_Video_Linux_10.9.tar).
Tried to fake the POST request to https://www.blackmagicdesign.com/api/register/us/download/46d65f46d6434b16bd69482b0ca7dba3 (supposed to return the actual download url) but it always ends up with a 504 GATEWAY_TIMEOUT error.
curl 'https://www.blackmagicdesign.com/api/register/us/download/46d65f46d6434b16bd69482b0ca7dba3' -H 'Host: www.blackmagicdesign.com' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0' -H 'Accept: application/json, text/plain, */*' -H 'Accept-Language: en-US,en;q=0.5' --compressed -H 'Content-Type: application/json;charset=utf-8' -H 'Referer: https://www.blackmagicdesign.com/support/download/9d53d0685c754e728c46d6dd57841fc0/Linux' -H 'Content-Length: 35' -H 'DNT: 1' -H 'Connection: keep-alive' --data '{country":"us","platform":"Linux"}' -v
The request is supposed to return a url like: http://sw.blackmagicdesign.com/DesktopVideo/v10.9/Blackmagic_Desktop_Video_Linux_10.9.tar.gz?Key-Pair-Id=APKAJTKA3ZJMJRQITVEA&Signature=Mc1SBHRRZ59Uklpc7fiUFwiD5z/gAc5QwTeR7rcROCvGvsWUFmaOTretk8XrMBdVCTbCiG7mFQAk2R+kObuDq2E6Rr305AykYFMtvRxsrRo4yXy2qovgeqXBIOrFeYI/DpmQ4BI450+8Y00MhOlV7d0uyKARqpCy+quWUOtnieWn7kSpUh5JElzCHen9/cMYzKpWi8VIFoGxhhgtMtNd25gwUoNk9O5ROGPw67Z1rIR/SUVrwm4PtQeghM/N89SrM6Nf33D0Q82X0UGINIa2GXrMFGQ5gRFjreDRLIXV0zR2tXAtiZ6HwzL9xIBUrwNvXGtXfdudAZ83uhOwlYPlcg==&Expires=1494342304
If anyone succeeds in programmatically getting this url i'll happily integrate it instead.
fthiery commented on 2017-05-09 14:19 (UTC)
Indeed, apparently bmd has improved the download protection, working on it
Pinned Comments
goldensuneur commented on 2020-03-02 19:00 (UTC)
I finally had time to investigate the issue. It looks like that as of 11.5, the
DesktopVideoHelper.service
has to be running for the capture card to work properly.