<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Activity for Ingex - video capture and transcoding</title><link>https://sourceforge.net/p/ingex/activity/</link><description>Recent activity for Ingex - video capture and transcoding</description><language>en</language><lastBuildDate>Thu, 22 Feb 2024 14:19:07 -0000</lastBuildDate><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#39fb</link><description>I don't know what the issue could be. Try make clean or manually remove generated files? Also, if you say the C99 error is fixed then I don't understand how this ./configure command failure is happening before the make where the C99 error was.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Thu, 22 Feb 2024 14:19:07 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#39fb</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#99ac</link><description>hello, the c99 problem is gone after i did what you suggested and i thank you. Now i have another problem: ingex@testr:~/bmx/libMXF&gt; ./autogen.sh &amp;&amp; ./configure &amp;&amp; make &amp;&amp; make check &amp;&amp; sudo make install + aclocal -I m4 + libtoolize -c + autoheader -f + automake --foreign --add-missing -c + autoconf configure: loading site script /usr/share/site/x86_64-unknown-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Thu, 22 Feb 2024 12:13:47 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#99ac</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#b42f</link><description>You could try one of these changes in configure.ac (in order) to see which one enables C99 support * add "AC_PROG_CC_STDC" after "AC_PROG_CC" * add "AC_PROG_CC_C99" after "AC_PROG_CC" * add the option "-std=gnu99" to the end of LIBMXF_CFLAGS=... * add the option "-std=c99" to the end of LIBMXF_CFLAGS=... Change "AM_SILENT_RULES([yes])" to "AM_SILENT_RULES([no])" to see the compiler commands</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Wed, 21 Feb 2024 15:55:56 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#b42f</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#7559</link><description>when i try to build the recommended for ingex libmx i get the error : mxf_labels_and_keys.c: In function 'mxf_get_jpeg2000_coding_label': mxf_labels_and_keys.c:180:13: error: 'for' loop initial declarations are only allowed in C99 mode for (uint8_t ml = 4; ml &lt; main_level; ml++) ^ mxf_labels_and_keys.c:180:13: note: use option -std=c99 or -std=gnu99 to compile your code Makefile:615: recipe for target 'libMXF_1.0_la-mxf_labels_and_keys.lo' failed make[2]: *** [libMXF_1.0_la-mxf_labels_and_keys.lo]...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Wed, 21 Feb 2024 15:17:12 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#7559</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#9184</link><description>It looks like your compiler does not support C++11, which is a requirement that is set at https://github.com/bbc/bmx/blob/main/CMakeLists.txt#L37. OpenSUSE 13.2 is from around 2014 and I guess the version of gcc/g++ installed is equally old. A fix for just libMXF is to change the line in libMXF https://github.com/bbc/bmx/blob/main/deps/libMXF/CMakeLists.txt#L38 to set(CMAKE_C_STANDARD 99), i.e. use c99. Then build using cmake in the deps/libMXF directory because the rest of bmx that uses C++ can't...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Wed, 21 Feb 2024 14:53:35 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#9184</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#bd64</link><description>Hello , i try to build the libmxf with cmake --build . and i get the error : [ 2%] Checking the git repository for changes... [ 2%] Built target libmxf_check_git [ 4%] Built target libmxf_git_version [ 6%] Building C object mxf/CMakeFiles/MXF.dir/mxf_labels_and_keys.c.o /home/ingex/mxf/mxf_labels_and_keys.c: In function ‘mxf_get_jpeg2000_coding_label’: /home/ingex/mxf/mxf_labels_and_keys.c:180:13: error: ‘for’ loop initial declarations are only allowed in C99 mode for (uint8_t ml = 4; ml &lt; main_level;...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Wed, 21 Feb 2024 14:21:14 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#bd64</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3ac7</link><description>you said that The compiler would need a C flag as the error message suggested. so i should ./autogen.sh &amp;&amp; ./configure &amp;&amp; make &amp;&amp; make check &amp;&amp; sudo make install and then what C flag so it does compile?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Tue, 20 Feb 2024 17:23:07 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3ac7</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#ade3</link><description>I don't know what Leap is but ffmpeg and the codecs it provides will have had many updates and it looks like from a quick search that shttpd hasn't been updated since 2008.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Tue, 20 Feb 2024 16:29:37 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#ade3</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#5455</link><description>do you know if there are any new versions of codecs-for-ffmpeg, ffmpeg-DNxHD and shttpd so i can use them with Leap?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Tue, 20 Feb 2024 16:24:24 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#5455</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3419</link><description>Sorry, I can't help with building Ingex.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Tue, 20 Feb 2024 16:12:02 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3419</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#7c14</link><description>what version of ubundu should i install to build ingex so you will be able to help me please? Also are there any new versions of codecs-for-ffmpeg, ffmpeg-DNxHD and shttpd?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Tue, 20 Feb 2024 15:58:34 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#7c14</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#28b2</link><description>It's been 20 years since I used openSUSE. A google search suggests that you can use zypper to install stuff: https://software.opensuse.org/download/package?package=uuid&amp;project=openSUSE%3A13.1 and https://software.opensuse.org/download.html?project=openSUSE%3A13.2%3AUpdate&amp;package=cmake The autoconf build is no longer supported and has been replaced with cmake.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Tue, 20 Feb 2024 15:52:52 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#28b2</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3c4f</link><description>ok i created bmx folder and downloaded bmx,libmxf,libmxfpp(is that the new libmxf++). I run openSUSE 13.2 what is the command to compile it (sudo apt install uuid-dev and sudo apt install cmake dont work? (i used to enter to each folder and run ./autogen.sh &amp;&amp; ./configure &amp;&amp; make &amp;&amp; make check &amp;&amp; sudo make install).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Tue, 20 Feb 2024 15:44:51 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3c4f</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#816a</link><description>You could clone and build using these steps: * The "Code" button on the main (bmx) page has the clone link, https://github.com/bbc/bmx.git. * Run git clone https://github.com/bbc/bmx.git to clone it into the bmx/ directory. * Install the libMXF dependencies, e.g. sudo apt install uuid-dev if you're on Ubuntu or Debian * Install cmake, e.g. sudo apt install cmake * Follow the commands listed here to build libMXF Follow a similar process if you want to build bmx using the instructions in the [bmx README]https://github.com/bbc/bmx/tree/main...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Tue, 20 Feb 2024 15:05:47 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#816a</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#8b4d</link><description>Sorry i am new to linux, how do i git clone from the site you linked and then compile it? I am following the installation guide, are there any other new files the the ones in there? Is there a new guide to follow?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Tue, 20 Feb 2024 14:52:53 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#8b4d</guid></item><item><title>Philip de Nier posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#00b9</link><description>The compiler would need a C flag as the error message suggested. However, this is very old and unmaintained code. The latest libMXF (within bmx) can be found here https://github.com/bbc/bmx/tree/main/deps/libMXF</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philip de Nier</dc:creator><pubDate>Tue, 20 Feb 2024 14:40:18 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#00b9</guid></item><item><title>Isidor posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3406</link><description>Hello when i ./autogen.sh &amp;&amp; ./configure &amp;&amp; make &amp;&amp; make check &amp;&amp; sudo make install i get an error : mxf_labels_and_keys.c: In function 'mxf_get_jpeg2000_coding_label': mxf_labels_and_keys.c:180:13: error: 'for' loop initial declarations are only allowed in C99 mode for (uint8_t ml = 4; ml &lt; main_level; ml++) ^ mxf_labels_and_keys.c:180:13: note: use option -std=c99 or -std=gnu99 to compile your code Makefile:615: recipe for target 'libMXF_1.0_la-mxf_labels_and_keys.lo' failed make[2]: *** [libMXF_1.0_la-mxf_labels_and_keys.lo]...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Isidor</dc:creator><pubDate>Tue, 20 Feb 2024 14:25:25 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/143e8a73f4/?limit=25#3406</guid></item><item><title>Nat Zakaria posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c/fcd8/f7c0</link><description>Am paying On Thu, Jun 4, 2020, 5:21 PM John Fletcher john_f@users.sourceforge.net wrote: I'm sorry, I cannot help with this. Can the developers assist https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c/fcd8 Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/ingex/discussion/531548/ To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nat Zakaria</dc:creator><pubDate>Thu, 04 Jun 2020 09:58:54 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c/fcd8/f7c0</guid></item><item><title>John Fletcher posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c/fcd8</link><description>I'm sorry, I cannot help with this.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Thu, 04 Jun 2020 09:21:13 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c/fcd8</guid></item><item><title>Nat Zakaria posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c</link><description>Need this for a project - a paid project</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nat Zakaria</dc:creator><pubDate>Thu, 04 Jun 2020 03:06:28 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#0a3c</guid></item><item><title>Nat Zakaria posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#1b89</link><description>Looking for something similar to this. http://www.mxfserver.com/meta-creator.html</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nat Zakaria</dc:creator><pubDate>Wed, 03 Jun 2020 02:38:17 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/3c5a501055/?limit=25#1b89</guid></item><item><title>Egor Ovcharov posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/1b4feb3247/?limit=25#9075</link><description>Hello everyone. Sorry for my English. Cause blackmagic don't archive older version of it's software, i can't find any compatible sdk's and desktop video in whole internet. Does anybody have archives of old versions software compatible with ingex?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Egor Ovcharov</dc:creator><pubDate>Thu, 02 Apr 2020 09:44:24 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/1b4feb3247/?limit=25#9075</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#8dbd</link><description>https://github.com/bcoudurier/FFmbc - This is a "broadcast" implementation of ffmpeg, but in your case (JPEG2000) I thing is't not what you want.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 01 Apr 2019 09:39:28 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#8dbd</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#979a</link><description>https://github.com/lu-zero/bmdtools - you can get the sources here and examples of use https://ffmpeg.org/documentation.html - this is a main library for a lot of opensource software out there, like the well known VLC.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 01 Apr 2019 09:33:24 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#979a</guid></item><item><title>trevor dominic  posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#1727</link><description>i've no idea what bmdtools is, nor ffmpeg. any simple tutorials i can follow?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">trevor dominic </dc:creator><pubDate>Mon, 01 Apr 2019 05:23:03 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#1727</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#3176</link><description>you can try the bmdtools project. you can send a uncompressed pipe to ffmpeg with this software. Works with blackmagic decklink sdk.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Fri, 29 Mar 2019 13:03:48 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#3176</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#b2dd</link><description>you can try the bmdtools project. you can send a uncompressed pipe to ffmpeg with this software. Works with blackmagic decklink sdk.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Fri, 29 Mar 2019 13:03:44 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#b2dd</guid></item><item><title>trevor dominic  posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#d452</link><description>hello all i have a projec whereby i need to digitise analog vhs tape and supply as MXFOP1A files using JPEG2000 codec. is there a simple way i can do this using my BMD intensity pro pci card (on mac or PC) and simply record the input using some software that someone here can direct me to? thx</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">trevor dominic </dc:creator><pubDate>Fri, 29 Mar 2019 07:52:52 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/cc7a28b5b2/?limit=25#d452</guid></item><item><title>John Fletcher posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/bd25713aee/?limit=25#a927</link><description>Some DVS Centaurus II boards on offer here; you could get a bargain! https://www.ppauctions.com/lot.php?l_id=122742&amp;id=223&amp;search=&amp;cat=all&amp;perPage=50&amp;sort=2&amp;thisPage=22</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Tue, 20 Nov 2018 16:49:27 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/bd25713aee/?limit=25#a927</guid></item><item><title>muxlux posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#a562</link><description>thank you for responding &amp; clearing that up, John. srry to hear BBC is no longer dev/supporting ingex :( it's the only open source multicam media server/recorder i know of btw, where (what files) might one begin working on the codec parameters? thank you for helping develop ingex too. it's still a great piece of open source software!!!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 06 Nov 2018 22:02:53 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#a562</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#23c9</link><description>This is partly a nomenclature issue. The number in the mode names is the frame rate but common practice for interlaced formats is to use the field rate. So for 1080i59.94, use 1080i29. I'm not sure why the only 1080 progressive formats are PSF but it shouldn't be too hard for you to add normal progressive because it has already been done for the 720 formats. The modes only include formats that fit on 1.5G SDI but it shouldn't be too hard to add a 3G format such as 1080p59.94, assuming the BMD cards...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Tue, 06 Nov 2018 17:21:04 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#23c9</guid></item><item><title>muxlux modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#eaae</link><description>./bmd_sdi -h says only: -mode vid[:AUDIO8] set input mode on all DVS cards, vid is one of: PAL, NTSC, PAL_592, PAL_608, NTSC_502 1920x1080i25, 1920x1080p25sf, 1920x1080i29, 1920x1080p29sf, 1280x720p50, 1280x720p59 all the decent cameras that i have access to are 1080i59.94 or 1080p(30 or 60) mediaexpress can see/capture the cameras @1080i59</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Sun, 04 Nov 2018 18:27:14 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#eaae</guid></item><item><title>muxlux posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#eaae</link><description>bmd_sdi says only: -mode vid[:AUDIO8] set input mode on all DVS cards, vid is one of: PAL, NTSC, PAL_592, PAL_608, NTSC_502 1920x1080i25, 1920x1080p25sf, 1920x1080i29, 1920x1080p29sf, 1280x720p50, 1280x720p59 all the decent cameras that i have access to are 1080i59.95 or 1080p(30 or 60) mediaexpress can see/capture the cameras @1080i59</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Sun, 04 Nov 2018 08:18:10 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/c8903f712f/?limit=25#eaae</guid></item><item><title>muxlux posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#c6f1</link><description>not sure what the problem was but installing an older version of the driver- desktopvideo-10.4.1-a9.x86_64.rpm - seemed to fix it.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 23 Oct 2018 04:14:46 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#c6f1</guid></item><item><title>muxlux modified a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#24cb</link><description>and the following is above the error: g++ -Wall -Wextra -g -O3 -mmmx -msse2 -DDEBUG -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -DUSE_FFMPEG -I../../common -I../common -I../database/src -I "/home/ingex/BlackmagicDeckLinkSDK/Linux/include" bmd_sdi.cpp -lstudiocommon -lcommon -lYUVlib -L../common -L../../common -lpthread -lavformat -lavcodec -lswscale -lavutil -lz -lbz2 -lmp3lame -lx264 -lfaac -lfaad -lm -lpthread -lDeckLinkAPI -o bmd_sdi /usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld:...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 23 Oct 2018 03:33:44 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#24cb</guid></item><item><title>muxlux posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#24cb</link><description>and the following is the above the error: g++ -Wall -Wextra -g -O3 -mmmx -msse2 -DDEBUG -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -DUSE_FFMPEG -I../../common -I../common -I../database/src -I "/home/ingex/BlackmagicDeckLinkSDK/Linux/include" bmd_sdi.cpp -lstudiocommon -lcommon -lYUVlib -L../common -L../../common -lpthread -lavformat -lavcodec -lswscale -lavutil -lz -lbz2 -lmp3lame -lx264 -lfaac -lfaad -lm -lpthread -lDeckLinkAPI -o bmd_sdi /usr/lib64/gcc/x86_64-suse-linux/4.8/../../../../x86_64-suse-linux/bin/ld:...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 23 Oct 2018 03:33:21 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#24cb</guid></item><item><title>muxlux modified a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#f04f</link><description>i keep getting the following error while compiling the full system with decklink &amp; nvidia graphics cards: Makefile:70: recipe for target 'bmd_sdi' failed make[2]: * [bmd_sdi] Error 1 make[2]: Leaving directory '/home/ingex/ap-workspace/ingex/studio/capture' Makefile:26: recipe for target 'all' failed make[1]: * [all] Error 2 make[1]: Leaving directory '/home/ingex/ap-workspace/ingex/studio' Makefile:29: recipe for target 'studio' failed make: * [studio] Error 2 any ideas? thx in advance :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 23 Oct 2018 02:28:18 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#f04f</guid></item><item><title>muxlux posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#f04f</link><description>i keep getting the following error while compiling the full system with decklink &amp; nvidia graphics cards: Makefile:70: recipe for target 'bmd_sdi' failed make[2]: *** [bmd_sdi] Error 1 make[2]: Leaving directory '/home/ingex/ap-workspace/ingex/studio/capture' Makefile:26: recipe for target 'all' failed make[1]: *** [all] Error 2 make[1]: Leaving directory '/home/ingex/ap-workspace/ingex/studio' Makefile:29: recipe for target 'studio' failed make: *** [studio] Error 2 any ideas? thx in advance :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 23 Oct 2018 02:27:26 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/7fa2f9d1ad/?limit=25#f04f</guid></item><item><title>dvision modified a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#c4f8</link><description>Thank you a million for the quick reply. I will try it right now. EDIT1: I left it while in transit, in a screen to compile everything again, after make clean, as you guys call it, "the make" and the bmd_sdi binary has been generated, Thank you again. EDIT2: It works like a charm. I commented out the whole IF which was returning exit code 1 and it seems to work just fine.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 18 Sep 2018 17:00:36 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#c4f8</guid></item><item><title>dvision modified a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#c4f8</link><description>Thank you a million for the quick reply. I will try it right now. I left it while in transit, in a screen to compile everything again, after make clean, as you guys call it, "the make" and the bmd_sdi binary has been generated, Thank you again.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 18 Sep 2018 15:26:05 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#c4f8</guid></item><item><title>dvision posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#c4f8</link><description>Thank you a million for the quick reply. I will try it right now.,</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 18 Sep 2018 15:23:33 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#c4f8</guid></item><item><title>John Fletcher posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#5688</link><description>I can't look at the code at the moment but try deleting any .o files in capture (or possibly in a hidden subdirectory like .obj). Also try make "bmd_sdi"</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Tue, 18 Sep 2018 14:44:44 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#5688</guid></item><item><title>dvision posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#3d27</link><description>Found it around line 1670 in [...]/studio/capture/bmd_sdi.cpp but running "make clean" and make in capture does not compile the bmd_sdi binary, even if I even deleted it. Help please!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 18 Sep 2018 14:32:20 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#3d27</guid></item><item><title>dvision posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#dfeb</link><description>I urgently need to patch the bmd_sdi to support more than 8 channels on a super machine with supper hardware for multi-channel capture. Any suggestion is strongly appreciated. sudo nice --10 ./bmd_sdi -c 12 -mode 1920x1080i25 -f YUV422 -s YUV422 -mc 0 -tt SYS -a8 -c requires integer maximum channel number &lt;= 8 Regards, dvision</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 18 Sep 2018 14:23:21 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/20f08255/?limit=25#dfeb</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/d503bc48/?limit=25#fd05</link><description>The xferserver.pl returns this in verbose mode: 12:17:22 Verbose mode. c: ctime cleared; s: on server; d: directory; -: unrecognised 12:17:22 Idle. 12:17:22 Verbose mode. c: ctime cleared; s: on server; d: directory; -: unrecognised 12:17:22 Idle. 12:17:22 Verbose mode. c: ctime cleared; s: on server; d: directory; -: unrecognised 12:17:22 Idle. 12:17:22 Verbose mode. c: ctime cleared; s: on server; d: directory; -: unrecognised 12:17:22 Idle. 12:17:22 Verbose mode. c: ctime cleared; s: on server;...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Thu, 06 Sep 2018 11:18:33 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/d503bc48/?limit=25#fd05</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/d503bc48/?limit=25#ef6d</link><description>Sorry, I don't know what the problem could be here.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Wed, 05 Sep 2018 11:52:58 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/d503bc48/?limit=25#ef6d</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/d503bc48/?limit=25#f34b</link><description>But don't stop the file copy. Just stop listening on port 2000 and sending the report to port 7010. I already tryed to change the port to 5000 (xferserver.pl, xferclient.pl and CopyManager.cpp) but I get the same result. This happens randomly, even when the process is in "Idle" state. We have other machines in the same network and all work fine. Rui</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Wed, 05 Sep 2018 11:16:53 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/d503bc48/?limit=25#f34b</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#1c2e</link><description>Sorry, I made a mistake. The Atomix LT has only 2 inputs.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Fri, 24 Aug 2018 10:04:19 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#1c2e</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#565b</link><description>By the way, for the SYS problem, you might get better results if the recorders sync to an accurate time source. I don't know if your SDI is locked to a reference but if you can get NTP from the same reference, that would be ideal.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Fri, 24 Aug 2018 09:57:06 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#565b</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#159f</link><description>I think the first problem is that because SYS timecode is not locked to the video, you might get timecode values skipped or repeated occasionally. In your example: channel[1] Target tc 01:40:37:18 not found, buffer 01:40:35:22 - 01:40:38:06 Could not start record - not all target timecodes found I'm guessing that timecode 01:40:37:18 got skipped. In the second problem, I think it might be because you have a pre-roll of zero. The recorder expects the start timecode to be in the buffer but if the start...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Fri, 24 Aug 2018 09:53:42 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#159f</guid></item><item><title>dvision posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#c2fa</link><description>THank you for the piece of advice, John. However, I am able to find only references to Atomix LT with only 2 SDI inputs. From your answer I deduce there are also ones with 4 outputs. Or the ones with 2 inputs have the 2 outputs switchable to inputs by software configuration? Thank you!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Wed, 22 Aug 2018 12:35:02 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#c2fa</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#5ada</link><description>I think you would have to use 2 x Atomix LT</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Tue, 14 Aug 2018 11:15:56 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#5ada</guid></item><item><title>dvision modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#4fa8</link><description>Well, thank you very much for the clarifications, John. Could you please recommend a capture board with 8 HD-SDI IN channels which would also be supported by Ingex with LTC? Thank you.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 14 Aug 2018 00:17:44 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#4fa8</guid></item><item><title>dvision posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#4fa8</link><description>Well, thank you very much for the clarifications, John.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Tue, 14 Aug 2018 00:15:24 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#4fa8</guid></item><item><title>dvision modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#ece4</link><description>I am using multiple recorders with the SYS option for timecode and with chunking. First recorder is not syncing time, the rest are syncing with the fist one, via ntpd (ticking synchronisation). The problem is that after a couple of hours, apparently randomly, one of the recorders refuse to start a new chunk. The following message is shown in the recorder log: channel[1] Target tc 01:40:37:18 not found, buffer 01:40:35:22 - 01:40:38:06 Could not start record - not all target timecodes found How can...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Mon, 13 Aug 2018 23:06:00 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#ece4</guid></item><item><title>dvision modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#ece4</link><description>I am using multiple recorders with the SYS option for timecode and with chunking. First recorder is not syncing time, the rest are syncing with the fist one, via ntpd (ticking synchronisation). The problem is that after a couple of hours, apparently randomly, one of the recorders refuse to start a new chunk. The following message is shown in the recorder log: channel[1] Target tc 01:40:37:18 not found, buffer 01:40:35:22 - 01:40:38:06 Could not start record - not all target timecodes found How can...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Mon, 13 Aug 2018 23:01:04 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#ece4</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#34df</link><description>No, I'm afraid it doesn't.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Mon, 13 Aug 2018 14:34:44 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#34df</guid></item><item><title>dvision posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#dddb</link><description>Thanks again. Does Ingex support any other hardeware LTC boards, other than having the capture board supporting it directly?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Mon, 13 Aug 2018 14:15:56 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#dddb</guid></item><item><title>dvision posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#ece4</link><description>I am using multiple recorders with the SYS option for timecode and with chunking. First recorder is not syncing time, the rest are syncing with the fist one, via ntpd (ticking synchronisation). The problem is that after a couple of hours, apparently randomly, one of the recorders refuse to start a new chunk. The following message is shown in the recorder log: channel[1] Target tc 01:40:37:18 not found, buffer 01:40:35:22 - 01:40:38:06 Could not start record - not all target timecodes found How can...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Mon, 13 Aug 2018 14:10:50 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/43dcf64c/?limit=25#ece4</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#deb9</link><description>I don't think BMD boards support LTC. I'm pretty sure DVS Atomix LT supports it, as did the older Centaurus II boards. By the way, we might be selling some of our Centaurus II boards soon, so let me know if you are interested.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Mon, 13 Aug 2018 14:08:53 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#deb9</guid></item><item><title>dvision posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#9ef6</link><description>Thank you for your prompt answer, John. Is this case is there any support for LTC using BMD boards? Could you recommend some example boards to support LTC from BMD or DVS? Thank you.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Mon, 13 Aug 2018 13:56:40 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#9ef6</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#bd7d</link><description>No, there is no provision to decode LTC from an audio input. Regards - John</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Mon, 13 Aug 2018 13:24:54 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#bd7d</guid></item><item><title>dvision modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#385c</link><description>Maybe I am missing it but I cannot find anythin on how to configure an Ingex system to use the audio input from the system audio for LTC timecode. Is it possible with the current code? Any insights will be greatefully appreciated.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Sun, 12 Aug 2018 01:18:45 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#385c</guid></item><item><title>dvision posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#385c</link><description>Maybe I am missing it but I cannot find anythin on how to configure an Ingex system to use the audio input from the system audio. Is it possible with the current code? Any insights will be greatefully appreciated.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Sun, 12 Aug 2018 00:39:59 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/7bbe529c/?limit=25#385c</guid></item><item><title>Michalis Michael posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/99154e8b/?limit=25#6d14</link><description>Hi, When a source is unpluged and pluged back in (and or when an input fails) recorder crashed and get the following error : MXFOP1AWriter::WriteSamples(uint32_t mp_track_id, uint32_t num_samples, const uint8_t *data, uint32_t data_size) :PA_ASSERT((mPackageGroup-&gt;Is25FPSProject() &amp;&amp; num_samples == 1920)||(!mPackageGroup-&gt;Is25FPSProject() &amp;&amp; (num_samples &lt;= 1602) failed</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Mon, 13 Nov 2017 10:57:51 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/99154e8b/?limit=25#6d14</guid></item><item><title>Omar posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/344592d2/?limit=25#3ee1</link><description>Hello every one we'd like to gain a licence for developing the ingex commercially to our client, all developers are welcomed to contribute with us, we are planning to add LTO7 and label printer, qr code generator for the archive, please contact me if you want to contirbute omar@freeone.space</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Omar</dc:creator><pubDate>Sun, 16 Jul 2017 08:37:09 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/344592d2/?limit=25#3ee1</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/b56c5353/?limit=25#538a</link><description>Solved, some of the definitions I'm using can not be divided by 3.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Wed, 21 Jun 2017 12:32:57 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/b56c5353/?limit=25#538a</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/b56c5353/?limit=25#d600</link><description>Hi everyone. When I run this command: player --xv --disable-pc-audio --nona-split --source-aspect 16:9 --hide-progress-bar --enable-term-keyb --udp-in 239.255.1.1:2000 --udp-in 239.255.1.1:2001 I get this output and only show the first channel The UDP Address is: 239.255.1.1 and the port is: 2000 Joined multicast group for 239.255.1.1 port 2000 Reading video parameters from multicast stream... width=640 height=360 framerate=25/1 audio_size=7680 packets_per_frame=241 frame_number=138549 source_name="PGM"...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Fri, 16 Jun 2017 14:57:36 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/b56c5353/?limit=25#d600</guid></item><item><title>Rui Loureiro modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/d1b3414f/?limit=25#c457</link><description>Sorry, I solve the problem after a more carefull look at the database. I'm using just 4 multicamdef and I need 8 of them. Rui</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 12 Jun 2017 16:25:19 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/d1b3414f/?limit=25#c457</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/d1b3414f/?limit=25#c457</link><description>Sorry, I solve the problem after a more carefull lock at the database. I'm using just 4 multicamdef and I need 8 of them. Rui</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 12 Jun 2017 16:25:03 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/d1b3414f/?limit=25#c457</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/d1b3414f/?limit=25#e82f</link><description>Hi everyone. I'm recording using two machines (one DVS board with two channels per machine), the createaaf reports 4 clips and 1 multi-camera when I create the aaf from the web interface, but the Avid MC only reads the clips from the first machine to the quad split. The start timecode and durations are the same for all clips. Any ideas? Thanks Rui</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 12 Jun 2017 14:37:23 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/d1b3414f/?limit=25#e82f</guid></item><item><title>Michalis Michael modified a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/9f824563/?limit=25#fcb2</link><description>Hello First of all i broke the opensuse system and until next week i dont have acces to ingest server. My thoughts are what if we edit MXFOP1AWriter.cpp and add in function : void MXFOP1AWriter::PrepareToWrite:(PackageGroup *package_group, bool take_ownership) .... package_group-&gt;GetMaterialResolution() == MaterialResolution::XDCAMHD422_MXF_1A and // create and initialize D10 writer case MaterialResolution::XDCAMHD422_MXF_1A: if (package_group-&gt;Is25FPSProject()) mD10Writer-&gt;SetBitRate(D10MXFOP1AWriter::D10_BIT_RATE_50,...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Fri, 05 May 2017 13:28:08 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/9f824563/?limit=25#fcb2</guid></item><item><title>muxlux posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/1a91cbdf/?limit=25#bf13</link><description>I may have just needed to restart apache2 but after I edited /etc/apache2/httpd.conf...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Fri, 10 Feb 2017 04:14:35 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/1a91cbdf/?limit=25#bf13</guid></item><item><title>muxlux posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/1a91cbdf/?limit=25#9445</link><description>what setting was wrong? i have the same problem &amp; system. my default-server.conf:...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Thu, 09 Feb 2017 12:09:45 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/1a91cbdf/?limit=25#9445</guid></item><item><title>muxlux posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/f5adc742/?limit=25#1878</link><description>Thank you, again - I should have seen that. I'll try to remember to look at the 1st...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Wed, 08 Feb 2017 07:09:44 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/f5adc742/?limit=25#1878</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/f5adc742/?limit=25#d5b5</link><description>It seems that you have not installed ffmpeg and shttpd - see top of page 12 in the...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Tue, 07 Feb 2017 08:30:49 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/f5adc742/?limit=25#d5b5</guid></item><item><title>muxlux posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/f5adc742/?limit=25#17a0</link><description>HI, I'm trying to install ingex with a Blackmagic DeckLink &amp; an AJA Kona3 capture...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">muxlux</dc:creator><pubDate>Tue, 07 Feb 2017 05:15:50 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/f5adc742/?limit=25#17a0</guid></item><item><title>Michalis Michael posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/143b17f2/?limit=25#2c6c</link><description>Hello John. Thanks for your quick reply! I found what i did wrong. I just set -a8...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Fri, 27 Jan 2017 08:00:26 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/143b17f2/?limit=25#2c6c</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/143b17f2/?limit=25#0005</link><description>Are you capturing 4 audio tracks? If you post the output from the capture (command...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Thu, 26 Jan 2017 11:15:56 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/143b17f2/?limit=25#0005</guid></item><item><title>Michalis Michael posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/143b17f2/?limit=25#80f5</link><description>Dear all Finally i had install and setup this beautifull software and i was able...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Wed, 25 Jan 2017 18:48:40 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/143b17f2/?limit=25#80f5</guid></item><item><title>Michalis Michael posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/a7604898/?limit=25#892c</link><description>Darren i get the same error and i cant figure out how to solve it. How did you manage...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Fri, 20 Jan 2017 16:38:56 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/a7604898/?limit=25#892c</guid></item><item><title>Michalis Michael posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/995ea6dd/?limit=25#e33a</link><description>Ignore my post. Installing libxtst-dev and libxv-dev solved my problem Regards M...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Thu, 19 Jan 2017 15:24:21 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/995ea6dd/?limit=25#e33a</guid></item><item><title>Michalis Michael posted a comment on discussion Developers</title><link>https://sourceforge.net/p/ingex/discussion/531548/thread/995ea6dd/?limit=25#9718</link><description>Hello ingex team! I get the folloing errors while im trying to compile ingex software:...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michalis Michael</dc:creator><pubDate>Wed, 18 Jan 2017 22:41:50 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531548/thread/995ea6dd/?limit=25#9718</guid></item><item><title>Rui Loureiro posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/75a7/7ff5</link><description>Ok, only D10 it's implemented in writemxf.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Tue, 10 Jan 2017 16:43:24 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/75a7/7ff5</guid></item><item><title>Rui Loureiro modified a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/b2e1</link><description>Hi John. Looking at ingex &gt; studio &gt; common &gt; MaterialResolution.h there is a XDCAMHD422_MXF_1A...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Tue, 10 Jan 2017 11:04:27 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/b2e1</guid></item><item><title>Peter Føhns posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/76eb7583/?limit=25#1c57</link><description>Hi Does any one use PTP to sync system time ? If so... what and how do you use it...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Føhns</dc:creator><pubDate>Tue, 10 Jan 2017 09:12:18 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/76eb7583/?limit=25#1c57</guid></item><item><title>Peter Føhns posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/8d8fd020/?limit=25#7bdb</link><description>Hi. I would like to capture 4 streams on one PC. Do anyone know wich of the new BMD...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Føhns</dc:creator><pubDate>Tue, 10 Jan 2017 09:11:12 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/8d8fd020/?limit=25#7bdb</guid></item><item><title>Rui Loureiro modified a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/b2e1</link><description>Hi John. Looking at ingex &gt; studio &gt; common &gt; MaterialResolution.h there is a XDCAMHD422_MXF_1A...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 09 Jan 2017 14:44:25 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/b2e1</guid></item><item><title>Rui Loureiro posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/b2e1</link><description>Hi John. Looking at ingex &gt; studio &gt; common &gt; MaterialResolution.h the is a XDCAMHD422_MXF_1A...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 09 Jan 2017 14:44:03 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/b2e1</guid></item><item><title>dvision posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/3eb26037/?limit=25#7a96</link><description>Hello JReykdal! Are you using the aaf export in your workflow? I wonder if it works...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dvision</dc:creator><pubDate>Mon, 09 Jan 2017 04:04:20 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/3eb26037/?limit=25#7a96</guid></item><item><title>Peter Føhns posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/75a7</link><description>That would be great !</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Føhns</dc:creator><pubDate>Fri, 16 Dec 2016 11:15:32 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26/75a7</guid></item><item><title>John Fletcher posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26</link><description>Not sure but I could try adding it if you are able to test</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Wed, 14 Dec 2016 10:24:04 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#da26</guid></item><item><title>Peter Føhns posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#ec9f/0e83/4110</link><description>Hi Rui... is it possible to get hands on your gui ? looks very nice and a bit more...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Føhns</dc:creator><pubDate>Tue, 13 Dec 2016 19:47:22 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#ec9f/0e83/4110</guid></item><item><title>Peter Føhns posted a comment on discussion Open Discussion</title><link>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#f4a5</link><description>Is this possible in Ingex ?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Føhns</dc:creator><pubDate>Tue, 13 Dec 2016 12:11:53 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531546/thread/549659e8/?limit=25#f4a5</guid></item><item><title>John Fletcher modified a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#62e8</link><description>Giuseppe, If you want to adjust the parameters of the transfer service, you can edit...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Mon, 12 Dec 2016 10:43:55 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#62e8</guid></item><item><title>John Fletcher posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#62e8</link><description>Giuseppe, If you want to adjust the parameters of the transfer service, take a look...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John Fletcher</dc:creator><pubDate>Mon, 12 Dec 2016 10:30:21 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#62e8</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#ec9f/0e83</link><description>My GUI encapsulate the capture service, recorder service, sys monitor service, rec...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Fri, 09 Dec 2016 17:26:16 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#ec9f/0e83</guid></item><item><title>vasco posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#ec9f</link><description>Hi Rui and John, our config is 1 server 4 clients (Suse 12.3) we used ingex gui on...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">vasco</dc:creator><pubDate>Wed, 07 Dec 2016 15:13:54 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#ec9f</guid></item><item><title>Rui Loureiro posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#4ce3/d649</link><description>Do you try the ntpdate command in a time interval? You can use the crontab for that....</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rui Loureiro</dc:creator><pubDate>Mon, 05 Dec 2016 18:05:54 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#4ce3/d649</guid></item><item><title>Peter Føhns posted a comment on discussion Help</title><link>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#1db0/7ca2</link><description>Ok.. Thanks John</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter Føhns</dc:creator><pubDate>Thu, 01 Dec 2016 11:49:39 -0000</pubDate><guid>https://sourceforge.net/p/ingex/discussion/531547/thread/3efcf9fe/?limit=25#1db0/7ca2</guid></item></channel></rss>