├── C ├── .gitignore ├── multifilesink.c ├── takepic.c └── zoom.c ├── CONTRIBUTORS.md ├── Other └── 0.10 │ ├── C │ ├── gst-sdk-tutorials │ │ ├── .gitignore │ │ ├── README.md │ │ ├── README.md~ │ │ ├── android-tutorial-1 │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── tutorial-1.c │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── gst_sdk_tutorials │ │ │ │ └── tutorial_1 │ │ │ │ └── Tutorial1.java │ │ ├── android-tutorial-2 │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── tutorial-2.c │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── gst_sdk_tutorials │ │ │ │ └── tutorial_2 │ │ │ │ └── Tutorial2.java │ │ ├── android-tutorial-3 │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── tutorial-3.c │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── gst_sdk_tutorials │ │ │ │ └── tutorial_3 │ │ │ │ ├── GStreamerSurfaceView.java │ │ │ │ └── Tutorial3.java │ │ ├── android-tutorial-4 │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── tutorial-4.c │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── gst_sdk_tutorials │ │ │ │ └── tutorial_4 │ │ │ │ ├── GStreamerSurfaceView.java │ │ │ │ └── Tutorial4.java │ │ ├── android-tutorial-5 │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── tutorial-5.c │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── gst_sdk_icon.png │ │ │ │ ├── layout │ │ │ │ │ ├── file_dialog_main.xml │ │ │ │ │ ├── file_dialog_row.xml │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ ├── gst_sdk_tutorials │ │ │ │ └── tutorial_5 │ │ │ │ │ ├── GStreamerSurfaceView.java │ │ │ │ │ └── Tutorial5.java │ │ │ │ └── lamerman │ │ │ │ └── FileDialog.java │ │ ├── basic-tutorial-1.c │ │ ├── basic-tutorial-12.c │ │ ├── basic-tutorial-13.c │ │ ├── basic-tutorial-15.c │ │ ├── basic-tutorial-2.c │ │ ├── basic-tutorial-3.c │ │ ├── basic-tutorial-4.c │ │ ├── basic-tutorial-5.c │ │ ├── basic-tutorial-6.c │ │ ├── basic-tutorial-7.c │ │ ├── basic-tutorial-8.c │ │ ├── basic-tutorial-9.c │ │ ├── playback-tutorial-1.c │ │ ├── playback-tutorial-2.c │ │ ├── playback-tutorial-3.c │ │ ├── playback-tutorial-4.c │ │ ├── playback-tutorial-5.c │ │ ├── playback-tutorial-6.c │ │ ├── playback-tutorial-7.c │ │ ├── vs2010 │ │ │ ├── basic-tutorial-1 │ │ │ │ ├── basic-tutorial-1.vcxproj │ │ │ │ └── basic-tutorial-1.vcxproj.filters │ │ │ ├── basic-tutorial-12 │ │ │ │ ├── basic-tutorial-12.vcxproj │ │ │ │ └── basic-tutorial-12.vcxproj.filters │ │ │ ├── basic-tutorial-13 │ │ │ │ ├── basic-tutorial-13.vcxproj │ │ │ │ └── basic-tutorial-13.vcxproj.filters │ │ │ ├── basic-tutorial-15 │ │ │ │ ├── basic-tutorial-15.vcxproj │ │ │ │ └── basic-tutorial-15.vcxproj.filters │ │ │ ├── basic-tutorial-2 │ │ │ │ ├── basic-tutorial-2.vcxproj │ │ │ │ └── basic-tutorial-2.vcxproj.filters │ │ │ ├── basic-tutorial-3 │ │ │ │ ├── basic-tutorial-3.vcxproj │ │ │ │ └── basic-tutorial-3.vcxproj.filters │ │ │ ├── basic-tutorial-4 │ │ │ │ ├── basic-tutorial-4.vcxproj │ │ │ │ └── basic-tutorial-4.vcxproj.filters │ │ │ ├── basic-tutorial-5 │ │ │ │ ├── basic-tutorial-5.vcxproj │ │ │ │ └── basic-tutorial-5.vcxproj.filters │ │ │ ├── basic-tutorial-6 │ │ │ │ ├── basic-tutorial-6.vcxproj │ │ │ │ └── basic-tutorial-6.vcxproj.filters │ │ │ ├── basic-tutorial-7 │ │ │ │ ├── basic-tutorial-7.vcxproj │ │ │ │ └── basic-tutorial-7.vcxproj.filters │ │ │ ├── basic-tutorial-8 │ │ │ │ ├── basic-tutorial-8.vcxproj │ │ │ │ └── basic-tutorial-8.vcxproj.filters │ │ │ ├── basic-tutorial-9 │ │ │ │ ├── basic-tutorial-9.vcxproj │ │ │ │ └── basic-tutorial-9.vcxproj.filters │ │ │ ├── playback-tutorial-1 │ │ │ │ ├── playback-tutorial-1.vcxproj │ │ │ │ └── playback-tutorial-1.vcxproj.filters │ │ │ ├── playback-tutorial-2 │ │ │ │ ├── playback-tutorial-2.vcxproj │ │ │ │ └── playback-tutorial-2.vcxproj.filters │ │ │ ├── playback-tutorial-3 │ │ │ │ ├── playback-tutorial-3.vcxproj │ │ │ │ └── playback-tutorial-3.vcxproj.filters │ │ │ ├── playback-tutorial-4 │ │ │ │ ├── playback-tutorial-4.vcxproj │ │ │ │ └── playback-tutorial-4.vcxproj.filters │ │ │ ├── playback-tutorial-5 │ │ │ │ ├── playback-tutorial-5.vcxproj │ │ │ │ └── playback-tutorial-5.vcxproj.filters │ │ │ ├── playback-tutorial-6 │ │ │ │ ├── playback-tutorial-6.vcxproj │ │ │ │ └── playback-tutorial-6.vcxproj.filters │ │ │ ├── playback-tutorial-7 │ │ │ │ ├── playback-tutorial-7.vcxproj │ │ │ │ └── playback-tutorial-7.vcxproj.filters │ │ │ └── tutorials.sln │ │ ├── xcode iOS │ │ │ ├── GStreamer iOS Tutorials.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Tutorial 1 │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── GStreamerBackend.h │ │ │ │ ├── GStreamerBackend.m │ │ │ │ ├── Images │ │ │ │ │ ├── appicon-1-iPad.png │ │ │ │ │ ├── appicon-1-iPad@2x.png │ │ │ │ │ ├── appicon-1-iPhone.png │ │ │ │ │ └── appicon-1-iPhone@2x.png │ │ │ │ ├── Tutorial 1-Info.plist │ │ │ │ ├── Tutorial 1-Prefix.pch │ │ │ │ ├── Ubuntu-R.ttf │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ │ │ └── MainStoryboard_iPhone.storyboard │ │ │ │ ├── fonts.conf │ │ │ │ ├── gst_ios_init.h │ │ │ │ ├── gst_ios_init.m │ │ │ │ └── main.m │ │ │ ├── Tutorial 2 │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── GStreamerBackend.h │ │ │ │ ├── GStreamerBackend.m │ │ │ │ ├── GStreamerBackendDelegate.h │ │ │ │ ├── Images │ │ │ │ │ ├── appicon-2-iPad.png │ │ │ │ │ ├── appicon-2-iPad@2x.png │ │ │ │ │ ├── appicon-2-iPhone.png │ │ │ │ │ └── appicon-2-iPhone@2x.png │ │ │ │ ├── Tutorial 2-Info.plist │ │ │ │ ├── Tutorial 2-Prefix.pch │ │ │ │ ├── Tutorial2-Info.plist │ │ │ │ ├── Ubuntu-R.ttf │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ │ │ └── MainStoryboard_iPhone.storyboard │ │ │ │ ├── fonts.conf │ │ │ │ ├── gst_ios_init.h │ │ │ │ ├── gst_ios_init.m │ │ │ │ └── main.m │ │ │ ├── Tutorial 3 │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── EaglUIVIew.h │ │ │ │ ├── EaglUIVIew.m │ │ │ │ ├── GStreamerBackend.h │ │ │ │ ├── GStreamerBackend.m │ │ │ │ ├── GStreamerBackendDelegate.h │ │ │ │ ├── Images │ │ │ │ │ ├── appicon-3-iPad.png │ │ │ │ │ ├── appicon-3-iPad@2x.png │ │ │ │ │ ├── appicon-3-iPhone.png │ │ │ │ │ └── appicon-3-iPhone@2x.png │ │ │ │ ├── Tutorial 3-Info.plist │ │ │ │ ├── Tutorial 3-Prefix.pch │ │ │ │ ├── Ubuntu-R.ttf │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ │ │ └── MainStoryboard_iPhone.storyboard │ │ │ │ ├── fonts.conf │ │ │ │ ├── gst_ios_init.h │ │ │ │ ├── gst_ios_init.m │ │ │ │ └── main.m │ │ │ ├── Tutorial 4 │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── EaglUIVIew.h │ │ │ │ ├── EaglUIVIew.m │ │ │ │ ├── GStreamerBackend.h │ │ │ │ ├── GStreamerBackend.m │ │ │ │ ├── GStreamerBackendDelegate.h │ │ │ │ ├── Images │ │ │ │ │ ├── appicon-4-iPad.png │ │ │ │ │ ├── appicon-4-iPad@2x.png │ │ │ │ │ ├── appicon-4-iPhone.png │ │ │ │ │ └── appicon-4-iPhone@2x.png │ │ │ │ ├── Tutorial 4-Info.plist │ │ │ │ ├── Tutorial 4-Prefix.pch │ │ │ │ ├── Ubuntu-R.ttf │ │ │ │ ├── VideoViewController.h │ │ │ │ ├── VideoViewController.m │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ │ │ └── MainStoryboard_iPhone.storyboard │ │ │ │ ├── fonts.conf │ │ │ │ ├── gst_ios_init.h │ │ │ │ ├── gst_ios_init.m │ │ │ │ └── main.m │ │ │ └── Tutorial 5 │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── EaglUIVIew.h │ │ │ │ ├── EaglUIVIew.m │ │ │ │ ├── GStreamerBackend.h │ │ │ │ ├── GStreamerBackend.m │ │ │ │ ├── GStreamerBackendDelegate.h │ │ │ │ ├── Images │ │ │ │ ├── appicon-5-iPad.png │ │ │ │ ├── appicon-5-iPad@2x.png │ │ │ │ ├── appicon-5-iPhone.png │ │ │ │ └── appicon-5-iPhone@2x.png │ │ │ │ ├── LibraryViewController.h │ │ │ │ ├── LibraryViewController.m │ │ │ │ ├── Tutorial 5-Info.plist │ │ │ │ ├── Tutorial 5-Prefix.pch │ │ │ │ ├── Ubuntu-R.ttf │ │ │ │ ├── VideoViewController.h │ │ │ │ ├── VideoViewController.m │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainStoryboard_iPad.storyboard │ │ │ │ └── MainStoryboard_iPhone.storyboard │ │ │ │ ├── fonts.conf │ │ │ │ ├── gst_ios_init.h │ │ │ │ ├── gst_ios_init.m │ │ │ │ └── main.m │ │ └── xcode │ │ │ └── GStreamer Tutorials.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── 01-Tutorial 1.xcscheme │ │ │ ├── 02-Tutorial 2.xcscheme │ │ │ ├── 03-Turorial 3.xcscheme │ │ │ ├── 04-Tutorial 4.xcscheme │ │ │ ├── 05-Tutorial 5.xcscheme │ │ │ ├── 06-Tutorial 6.xcscheme │ │ │ ├── 07-Tutorial 7.xcscheme │ │ │ ├── 08-Tutorial 8.xcscheme │ │ │ ├── 09-Tutorial 9.xcscheme │ │ │ ├── 12-Tutorial 12.xcscheme │ │ │ ├── 13-Tutorial 13.xcscheme │ │ │ ├── 15-Tutorial 15.xcscheme │ │ │ ├── 21-Playback Tutorial 1.xcscheme │ │ │ ├── 22-Playback Tutorial 2.xcscheme │ │ │ ├── 23-Playback Tutorial 3.xcscheme │ │ │ ├── 24-Playback Tutorial 4.xcscheme │ │ │ ├── 25-Playback Tutorial 5.xcscheme │ │ │ ├── 26-Playback Tutorial 6.xcscheme │ │ │ ├── 27-Playback Tutorial 7.xcscheme │ │ │ └── xcschememanagement.plist │ └── multifilesink.c │ ├── Python │ ├── pygst-sdk-tutorials │ │ ├── README.md │ │ ├── basic-tutorial-1.py │ │ ├── basic-tutorial-12-new.py │ │ ├── basic-tutorial-12.py │ │ ├── basic-tutorial-13-ext.py │ │ ├── basic-tutorial-13.py │ │ ├── basic-tutorial-2.py │ │ ├── basic-tutorial-3-exc.py │ │ ├── basic-tutorial-3.py │ │ ├── basic-tutorial-4.py │ │ ├── basic-tutorial-5.py │ │ ├── basic-tutorial-6.py │ │ ├── basic-tutorial-7.py │ │ ├── basic-tutorial-8.py │ │ ├── basic-tutorial-9.py │ │ ├── playback-tutorial-1.py │ │ ├── playback-tutorial-2.py │ │ ├── playback-tutorial-3.py │ │ ├── playback-tutorial-4.py │ │ ├── playback-tutorial-5.py │ │ ├── playback-tutorial-6.py │ │ ├── playback-tutorial-7-exc.py │ │ ├── playback-tutorial-7.py │ │ ├── pygst-sdk-tutorials.pyproj │ │ └── pygst-sdk-tutorials.sln │ └── tee_and_rtmpsink.py │ └── Shell │ └── videoeffects.sh ├── Python ├── pygst-sdk-tutorials │ ├── README.md │ ├── basic-tutorial-1.py │ ├── basic-tutorial-2.py │ ├── basic-tutorial-3.py │ └── basic-tutorial-4.py └── pygst-tutorial │ ├── 0.md │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ ├── example21.py │ ├── example22.py │ ├── example22b.py │ ├── example23.py │ ├── example31.py │ ├── example32.py │ ├── example33.py │ ├── example4.py │ ├── example5.py │ ├── example61.py │ ├── example62.py │ ├── example63.py │ ├── example71.py │ ├── example72.py │ ├── example8.py │ ├── original │ ├── 2.pdf │ ├── 3.pdf │ ├── 4.pdf │ ├── 5.pdf │ ├── 6.pdf │ ├── 7.pdf │ └── 8.pdf │ └── tvlogo.png ├── README.md ├── Rust └── basic-tutorial │ └── 1-hello-world │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ └── src │ └── main.rs └── Shell └── videoeffects.sh /C/.gitignore: -------------------------------------------------------------------------------- 1 | multifilesink 2 | takepic 3 | *.avi 4 | *.png -------------------------------------------------------------------------------- /C/multifilesink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/C/multifilesink.c -------------------------------------------------------------------------------- /C/takepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/C/takepic.c -------------------------------------------------------------------------------- /C/zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/C/zoom.c -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/.gitignore -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/README.md -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/README.md~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/README.md~ -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/AndroidManifest.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/jni/Android.mk -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/jni/tutorial-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/jni/tutorial-1.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-hdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-hdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-ldpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-ldpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-mdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-mdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-xhdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/drawable-xhdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/layout/main.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/res/values/strings.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/src/com/gst_sdk_tutorials/tutorial_1/Tutorial1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-1/src/com/gst_sdk_tutorials/tutorial_1/Tutorial1.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/AndroidManifest.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/jni/Android.mk -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/jni/tutorial-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/jni/tutorial-2.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-hdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-hdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-ldpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-ldpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-mdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-mdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-xhdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/drawable-xhdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/layout/main.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/res/values/strings.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/src/com/gst_sdk_tutorials/tutorial_2/Tutorial2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-2/src/com/gst_sdk_tutorials/tutorial_2/Tutorial2.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/AndroidManifest.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/jni/Android.mk -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/jni/tutorial-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/jni/tutorial-3.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-hdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-hdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-ldpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-ldpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-mdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-mdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-xhdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/drawable-xhdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/layout/main.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/res/values/strings.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/src/com/gst_sdk_tutorials/tutorial_3/GStreamerSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/src/com/gst_sdk_tutorials/tutorial_3/GStreamerSurfaceView.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/src/com/gst_sdk_tutorials/tutorial_3/Tutorial3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-3/src/com/gst_sdk_tutorials/tutorial_3/Tutorial3.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/AndroidManifest.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/jni/Android.mk -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/jni/tutorial-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/jni/tutorial-4.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-hdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-hdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-ldpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-ldpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-mdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-mdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-xhdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/drawable-xhdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/layout/main.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/res/values/strings.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/src/com/gst_sdk_tutorials/tutorial_4/GStreamerSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/src/com/gst_sdk_tutorials/tutorial_4/GStreamerSurfaceView.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/src/com/gst_sdk_tutorials/tutorial_4/Tutorial4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-4/src/com/gst_sdk_tutorials/tutorial_4/Tutorial4.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/AndroidManifest.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/jni/Android.mk -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/jni/tutorial-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/jni/tutorial-5.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-hdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-hdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-ldpi/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-ldpi/file.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-ldpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-ldpi/folder.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-ldpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-ldpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-mdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-mdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-xhdpi/gst_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/drawable-xhdpi/gst_sdk_icon.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/layout/file_dialog_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/layout/file_dialog_main.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/layout/file_dialog_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/layout/file_dialog_row.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/layout/main.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/res/values/strings.xml -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/src/com/gst_sdk_tutorials/tutorial_5/GStreamerSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/src/com/gst_sdk_tutorials/tutorial_5/GStreamerSurfaceView.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/src/com/gst_sdk_tutorials/tutorial_5/Tutorial5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/src/com/gst_sdk_tutorials/tutorial_5/Tutorial5.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/src/com/lamerman/FileDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/android-tutorial-5/src/com/lamerman/FileDialog.java -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-1.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-12.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-13.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-15.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-2.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-3.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-4.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-5.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-6.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-7.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-8.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/basic-tutorial-9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/basic-tutorial-9.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-1.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-2.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-3.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-4.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-5.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-6.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/playback-tutorial-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/playback-tutorial-7.c -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-1/basic-tutorial-1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-1/basic-tutorial-1.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-1/basic-tutorial-1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-1/basic-tutorial-1.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-12/basic-tutorial-12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-12/basic-tutorial-12.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-12/basic-tutorial-12.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-12/basic-tutorial-12.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-13/basic-tutorial-13.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-13/basic-tutorial-13.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-13/basic-tutorial-13.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-13/basic-tutorial-13.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-15/basic-tutorial-15.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-15/basic-tutorial-15.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-15/basic-tutorial-15.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-15/basic-tutorial-15.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-2/basic-tutorial-2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-2/basic-tutorial-2.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-2/basic-tutorial-2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-2/basic-tutorial-2.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-3/basic-tutorial-3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-3/basic-tutorial-3.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-3/basic-tutorial-3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-3/basic-tutorial-3.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-4/basic-tutorial-4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-4/basic-tutorial-4.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-4/basic-tutorial-4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-4/basic-tutorial-4.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-5/basic-tutorial-5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-5/basic-tutorial-5.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-5/basic-tutorial-5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-5/basic-tutorial-5.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-6/basic-tutorial-6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-6/basic-tutorial-6.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-6/basic-tutorial-6.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-6/basic-tutorial-6.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-7/basic-tutorial-7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-7/basic-tutorial-7.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-7/basic-tutorial-7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-7/basic-tutorial-7.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-8/basic-tutorial-8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-8/basic-tutorial-8.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-8/basic-tutorial-8.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-8/basic-tutorial-8.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-9/basic-tutorial-9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-9/basic-tutorial-9.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-9/basic-tutorial-9.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/basic-tutorial-9/basic-tutorial-9.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-1/playback-tutorial-1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-1/playback-tutorial-1.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-1/playback-tutorial-1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-1/playback-tutorial-1.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-2/playback-tutorial-2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-2/playback-tutorial-2.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-2/playback-tutorial-2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-2/playback-tutorial-2.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-3/playback-tutorial-3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-3/playback-tutorial-3.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-3/playback-tutorial-3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-3/playback-tutorial-3.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-4/playback-tutorial-4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-4/playback-tutorial-4.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-4/playback-tutorial-4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-4/playback-tutorial-4.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-5/playback-tutorial-5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-5/playback-tutorial-5.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-5/playback-tutorial-5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-5/playback-tutorial-5.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-6/playback-tutorial-6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-6/playback-tutorial-6.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-6/playback-tutorial-6.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-6/playback-tutorial-6.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-7/playback-tutorial-7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-7/playback-tutorial-7.vcxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-7/playback-tutorial-7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/playback-tutorial-7/playback-tutorial-7.vcxproj.filters -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/vs2010/tutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/vs2010/tutorials.sln -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/GStreamer iOS Tutorials.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/GStreamer iOS Tutorials.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/GStreamer iOS Tutorials.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/GStreamer iOS Tutorials.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/AppDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/AppDelegate.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Default-568h@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Default.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Default@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/GStreamerBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/GStreamerBackend.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/GStreamerBackend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/GStreamerBackend.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPad.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPad@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPhone.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Images/appicon-1-iPhone@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Tutorial 1-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Tutorial 1-Info.plist -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Tutorial 1-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Tutorial 1-Prefix.pch -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/Ubuntu-R.ttf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/ViewController.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/ViewController.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/fonts.conf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/gst_ios_init.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/gst_ios_init.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 1/main.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/AppDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/AppDelegate.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Default-568h@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Default.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Default@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/GStreamerBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/GStreamerBackend.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/GStreamerBackend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/GStreamerBackend.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/GStreamerBackendDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/GStreamerBackendDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPad.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPad@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPhone.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Images/appicon-2-iPhone@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Tutorial 2-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Tutorial 2-Info.plist -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Tutorial 2-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Tutorial 2-Prefix.pch -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Tutorial2-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Tutorial2-Info.plist -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/Ubuntu-R.ttf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/ViewController.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/ViewController.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/fonts.conf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/gst_ios_init.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/gst_ios_init.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 2/main.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/AppDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/AppDelegate.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Default-568h@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Default.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Default@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/EaglUIVIew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/EaglUIVIew.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/EaglUIVIew.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/EaglUIVIew.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/GStreamerBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/GStreamerBackend.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/GStreamerBackend.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/GStreamerBackendDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/GStreamerBackendDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPad.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPad@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPhone.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Images/appicon-3-iPhone@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Tutorial 3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Tutorial 3-Info.plist -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Tutorial 3-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Tutorial 3-Prefix.pch -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/Ubuntu-R.ttf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/ViewController.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/ViewController.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/fonts.conf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/gst_ios_init.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/gst_ios_init.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 3/main.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/AppDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/AppDelegate.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Default-568h@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Default.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Default@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/EaglUIVIew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/EaglUIVIew.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/EaglUIVIew.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/EaglUIVIew.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/GStreamerBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/GStreamerBackend.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/GStreamerBackend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/GStreamerBackend.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/GStreamerBackendDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/GStreamerBackendDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPad.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPad@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPhone.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Images/appicon-4-iPhone@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Tutorial 4-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Tutorial 4-Info.plist -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Tutorial 4-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Tutorial 4-Prefix.pch -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/Ubuntu-R.ttf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/VideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/VideoViewController.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/VideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/VideoViewController.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/fonts.conf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/gst_ios_init.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/gst_ios_init.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 4/main.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/AppDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/AppDelegate.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Default-568h@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Default.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Default@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/EaglUIVIew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/EaglUIVIew.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/EaglUIVIew.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/EaglUIVIew.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/GStreamerBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/GStreamerBackend.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/GStreamerBackend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/GStreamerBackend.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/GStreamerBackendDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/GStreamerBackendDelegate.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPad.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPad@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPhone.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Images/appicon-5-iPhone@2x.png -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/LibraryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/LibraryViewController.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/LibraryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/LibraryViewController.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Tutorial 5-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Tutorial 5-Info.plist -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Tutorial 5-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Tutorial 5-Prefix.pch -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/Ubuntu-R.ttf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/VideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/VideoViewController.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/VideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/VideoViewController.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/fonts.conf -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/gst_ios_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/gst_ios_init.h -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/gst_ios_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/gst_ios_init.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode iOS/Tutorial 5/main.m -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/01-Tutorial 1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/01-Tutorial 1.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/02-Tutorial 2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/02-Tutorial 2.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/03-Turorial 3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/03-Turorial 3.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/04-Tutorial 4.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/04-Tutorial 4.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/05-Tutorial 5.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/05-Tutorial 5.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/06-Tutorial 6.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/06-Tutorial 6.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/07-Tutorial 7.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/07-Tutorial 7.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/08-Tutorial 8.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/08-Tutorial 8.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/09-Tutorial 9.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/09-Tutorial 9.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/12-Tutorial 12.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/12-Tutorial 12.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/13-Tutorial 13.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/13-Tutorial 13.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/15-Tutorial 15.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/15-Tutorial 15.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/21-Playback Tutorial 1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/21-Playback Tutorial 1.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/22-Playback Tutorial 2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/22-Playback Tutorial 2.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/23-Playback Tutorial 3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/23-Playback Tutorial 3.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/24-Playback Tutorial 4.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/24-Playback Tutorial 4.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/25-Playback Tutorial 5.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/25-Playback Tutorial 5.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/26-Playback Tutorial 6.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/26-Playback Tutorial 6.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/27-Playback Tutorial 7.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/27-Playback Tutorial 7.xcscheme -------------------------------------------------------------------------------- /Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/gst-sdk-tutorials/xcode/GStreamer Tutorials.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Other/0.10/C/multifilesink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/C/multifilesink.c -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/README.md -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-1.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-12-new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-12-new.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-12.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-13-ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-13-ext.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-13.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-2.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-3-exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-3-exc.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-3.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-4.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-5.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-6.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-7.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-8.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/basic-tutorial-9.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-1.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-2.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-3.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-4.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-5.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-6.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-7-exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-7-exc.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/playback-tutorial-7.py -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/pygst-sdk-tutorials.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/pygst-sdk-tutorials.pyproj -------------------------------------------------------------------------------- /Other/0.10/Python/pygst-sdk-tutorials/pygst-sdk-tutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/pygst-sdk-tutorials/pygst-sdk-tutorials.sln -------------------------------------------------------------------------------- /Other/0.10/Python/tee_and_rtmpsink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Python/tee_and_rtmpsink.py -------------------------------------------------------------------------------- /Other/0.10/Shell/videoeffects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Other/0.10/Shell/videoeffects.sh -------------------------------------------------------------------------------- /Python/pygst-sdk-tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-sdk-tutorials/README.md -------------------------------------------------------------------------------- /Python/pygst-sdk-tutorials/basic-tutorial-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-sdk-tutorials/basic-tutorial-1.py -------------------------------------------------------------------------------- /Python/pygst-sdk-tutorials/basic-tutorial-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-sdk-tutorials/basic-tutorial-2.py -------------------------------------------------------------------------------- /Python/pygst-sdk-tutorials/basic-tutorial-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-sdk-tutorials/basic-tutorial-3.py -------------------------------------------------------------------------------- /Python/pygst-sdk-tutorials/basic-tutorial-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-sdk-tutorials/basic-tutorial-4.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/0.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/1.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/2.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/3.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/4.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/5.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/6.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/7.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/8.md -------------------------------------------------------------------------------- /Python/pygst-tutorial/example21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example21.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example22.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example22b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example22b.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example23.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example31.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example32.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example33.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example4.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example5.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example61.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example62.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example62.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example63.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example63.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example71.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example72.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/example8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/example8.py -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/2.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/3.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/4.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/5.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/6.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/7.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/original/8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/original/8.pdf -------------------------------------------------------------------------------- /Python/pygst-tutorial/tvlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Python/pygst-tutorial/tvlogo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/README.md -------------------------------------------------------------------------------- /Rust/basic-tutorial/1-hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Rust/basic-tutorial/1-hello-world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Rust/basic-tutorial/1-hello-world/Cargo.toml -------------------------------------------------------------------------------- /Rust/basic-tutorial/1-hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Rust/basic-tutorial/1-hello-world/README.md -------------------------------------------------------------------------------- /Rust/basic-tutorial/1-hello-world/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Rust/basic-tutorial/1-hello-world/src/main.rs -------------------------------------------------------------------------------- /Shell/videoeffects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenrua/GstreamerCodeSnippets/HEAD/Shell/videoeffects.sh --------------------------------------------------------------------------------