<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Wed, 10 Jun 2026 04:26:59 +0000</lastBuildDate>
    <item>
      <title>(C#) (C# tutorial) How to create edge detection function - DaniBarros</title>
      <link>https://snipplr.com/view/89547/c-tutorial-how-to-create-edge-detection-function</link>
      <description>&lt;p&gt;I am really interested in Computer Vision technology, so I started to dig deeper in this topic. This is how I found the code below for edge detection, a method belonging to object detection.&#13;
If you are interested in implementing edge detection in C#, too, here you can find the code I tried. The code is from a prewritten C# camera library you can all access.&#13;
&#13;
To develop the edge detection function you only need to have a Visual C# WPF Application created in Visual Studio and the VOIPSDK.dll and NVA.dll files (from www.camera-sdk.com ) added to the references.&#13;
&#13;
Creating the user interface is the first step. It will help you to use edge detection by providing an easy-to-use interface. You will have two fields to display the original image and the processed image of the camera, you can set values for Canny Threshold and Canny Threshold Linking and you can set whether you want the edges of the detected elements to be white or colorized. You can find the code of the GUI under Form1.Designer.cs.&#13;
&#13;
Under Form1.cs there is the code for the edge detection function. You can see how to code is built up and what you should to create this function. There will be the different methods you have to call and all the configurations are described.&#13;
&#13;
Trust me, guys, this source code will help you a lot, it made my life easier. Good luck!&lt;/p&gt;</description>
      <pubDate>Sat, 07 Feb 2015 01:13:41 UTC</pubDate>
      <guid>https://snipplr.com/view/89547/c-tutorial-how-to-create-edge-detection-function</guid>
    </item>
    <item>
      <title>(C#) How to implement corner detection (C#) - MahendraGadhavi</title>
      <link>https://snipplr.com/view/89544/how-to-implement-corner-detection-c</link>
      <description>&lt;p&gt;You can find the full source code for corner detection here. I found this solution on www.camera-sdk.com and it worked for me fine. I created a Visual C# WPF application in Visual Studio, and added two .dll files (VOIPSDK.dll and NVA.dll) to the references. The .dll files can be found on the webpage.&#13;
&#13;
First, you can see the full source code for the interface of the program at Form1.Desginer.cs. On this GUI you can adjust many configurations in connection with the image of the camera, and you can have a detailed list about the detected corners.&#13;
&#13;
Under Form1.cs you can find the source code for the program itself and you will see which mediahandlers, methods and configurations you should use to achieve this function.&#13;
&#13;
I hope you can all use this snippet! I wish you success to build your corner detecting solutions!&lt;/p&gt;</description>
      <pubDate>Fri, 06 Feb 2015 23:12:41 UTC</pubDate>
      <guid>https://snipplr.com/view/89544/how-to-implement-corner-detection-c</guid>
    </item>
    <item>
      <title>(C#) How to capture frames from a camera in C# - AdrianVasilyev</title>
      <link>https://snipplr.com/view/89539/how-to-capture-frames-from-a-camera-in-c</link>
      <description>&lt;p&gt;If you wish to make your home, office or warehouse more secure, taking frame captures can be a very useful solution for you. And I can tell you this because Iâ€™ve already implemented this function at my office. Now I am sharing the prewritten source code with you for such a solution. &#13;
&#13;
What will you need for this function?&#13;
&#13;
â€¢	A Visual C# WPF Application created in Visual Studio&#13;
â€¢	The VoIPSDK.dll added to the references. (It can be found on the website where I found the code: www.camera-sdk.com/)&#13;
&#13;
The first part of the code under MainForm.cs is the code for the frame capturing program itself. It contains all the details you need to implement this function. Later, under MainForm.Designer.cs youâ€™ll find the source code for the GUI of this program. The code will help you to develop a user interface that will make it easy to use the program.&#13;
&#13;
Good luck with implementing the code!&lt;/p&gt;</description>
      <pubDate>Fri, 06 Feb 2015 18:29:01 UTC</pubDate>
      <guid>https://snipplr.com/view/89539/how-to-capture-frames-from-a-camera-in-c</guid>
    </item>
    <item>
      <title>(C#) How to make SIP video calls in C# - sacha-manji</title>
      <link>https://snipplr.com/view/88431/how-to-make-sip-video-calls-in-c</link>
      <description>&lt;p&gt;While searching on the Internet on how to make SIP video calls using C#, I recognised that there arenâ€™t any brief and straightforward tutorial in this topic. I found multi-page articles (sorry, but some of them are full of bullsh*t) and neverending forum threads, but none of them provided me complete solution. Therefore, I undertook to create a short and concise guide on how to make video calls in C# using the VoIP technology.&#13;
&#13;
Look at the prerequisites:&#13;
&#13;
-	PBX: To be able to make and receive video calls you, a phone system (e.g. Asterisk) is essentially needed. You need to add a new SIP account in your PBX for this application.&#13;
&#13;
-	Visual Studio: This solution is based on a console softphone, so a new Visual C# Console Application is just enough.&#13;
&#13;
-	VoIPSDK.dll: I used prewritten VoIP components to implement the SIP video calling feature. The necessary .dll file can be found on this website: http://www.voip-sip-sdk.com/. It should be added to your references.&#13;
&#13;
-	Test phone: To test your application you can use any VoIP phone stat supports video calling (e.g. Bria softphone).&#13;
&#13;
Now take a look at the code. As you can see below, just a few lines of C# code are enough to connect the application to a PBX and to initiate a video call. Firstly, you need to perform the SIP registration tasks. You need to create a softphone and a phone line object, then you need to specify the SIP account to be used for the phone line. These configurations are needed to be able to register to your PBX. After calling the RegisterPhoneLine method the regsitration procedure starts, and the application will indicates its status due to the mySoftphone_PhoneLineStateChanged method. The PhoneCallVideoSender and PhoneCallVideoReceiver objects are responsible for video handling. To handle the USB webcamera, the WebCamera object can be used. The CallType class is used to identify whether the call is a video or an audio call.&#13;
&#13;
To make a test call, provide valid SIP account details for this console application to be able to register to your PBX, then specify a telephone number to be dialled (it can be an other SIP account that has been previously registered to the PBX). After running the application, it dials the provided phone number automatically meanwhile sending the image of the webcamera.&lt;/p&gt;</description>
      <pubDate>Mon, 26 Jan 2015 21:50:53 UTC</pubDate>
      <guid>https://snipplr.com/view/88431/how-to-make-sip-video-calls-in-c</guid>
    </item>
    <item>
      <title>(JavaScript) Full-screen element (video / image) - rickygri</title>
      <link>https://snipplr.com/view/71273/fullscreen-element-video--image</link>
      <description>&lt;p&gt;Used to stretch a video / image to fill a background without skewing.  Attach to resize events&lt;/p&gt;</description>
      <pubDate>Thu, 23 May 2013 01:13:20 UTC</pubDate>
      <guid>https://snipplr.com/view/71273/fullscreen-element-video--image</guid>
    </item>
    <item>
      <title>(DOS Batch) ffmpeg - Convert Sony Cybershot MPG file to mp4 for JavaFX 2 - laurenceosx</title>
      <link>https://snipplr.com/view/70788/ffmpeg--convert-sony-cybershot-mpg-file-to-mp4-for-javafx-2</link>
      <description>&lt;p&gt;ffmpeg - Convert Sony Cybershot MPG file to mp4 for JavaFX 2&lt;/p&gt;</description>
      <pubDate>Mon, 15 Apr 2013 08:26:02 UTC</pubDate>
      <guid>https://snipplr.com/view/70788/ffmpeg--convert-sony-cybershot-mpg-file-to-mp4-for-javafx-2</guid>
    </item>
    <item>
      <title>(DOS Batch) ffmpeg - Convert iPhone mov file to mp4 for JavaFX 2 - laurenceosx</title>
      <link>https://snipplr.com/view/70786/ffmpeg--convert-iphone-mov-file-to-mp4-for-javafx-2</link>
      <description>&lt;p&gt;This type of conversion is very fast because the main audio video content is just copied (not converted) to a new container type of file.&lt;/p&gt;</description>
      <pubDate>Mon, 15 Apr 2013 04:49:38 UTC</pubDate>
      <guid>https://snipplr.com/view/70786/ffmpeg--convert-iphone-mov-file-to-mp4-for-javafx-2</guid>
    </item>
    <item>
      <title>(CSS) Simple CSS3 Play Button - devowhippit</title>
      <link>https://snipplr.com/view/70174/simple-css3-play-button</link>
      <description>&lt;p&gt;Uses CSS3 attributes and psuedo elements to create a simple play button for web interfaces.&lt;/p&gt;</description>
      <pubDate>Fri, 01 Mar 2013 02:54:00 UTC</pubDate>
      <guid>https://snipplr.com/view/70174/simple-css3-play-button</guid>
    </item>
    <item>
      <title>(JavaScript) Youtube ID from URL - slimITTN</title>
      <link>https://snipplr.com/view/69877/youtube-id-from-url</link>
      <description>&lt;p&gt;This snippets show how to extract the video id of a youtube video from its URL&lt;/p&gt;</description>
      <pubDate>Mon, 11 Feb 2013 07:31:14 UTC</pubDate>
      <guid>https://snipplr.com/view/69877/youtube-id-from-url</guid>
    </item>
    <item>
      <title>(Bash) Convert image sequence to video - jmiller</title>
      <link>https://snipplr.com/view/68533/convert-image-sequence-to-video</link>
      <description>&lt;p&gt;This would convert images at 30fps to a mp4 video, with sequence titles:&#13;
ImageName0000.png, ImageName0001.png, etc.&#13;
&#13;
You could use -r 1/5 to use one frame every five seconds.&lt;/p&gt;</description>
      <pubDate>Tue, 13 Nov 2012 09:52:38 UTC</pubDate>
      <guid>https://snipplr.com/view/68533/convert-image-sequence-to-video</guid>
    </item>
    <item>
      <title>(PHP) Youtube Video Download Script - codespartan</title>
      <link>https://snipplr.com/view/65681/youtube-video-download-script</link>
      <description>&lt;p&gt;Extracts the video title &amp; download URL from a youtube page and starts a download.&lt;/p&gt;</description>
      <pubDate>Mon, 18 Jun 2012 00:43:40 UTC</pubDate>
      <guid>https://snipplr.com/view/65681/youtube-video-download-script</guid>
    </item>
    <item>
      <title>(CSS) Responsive Video - OrngTicTac</title>
      <link>https://snipplr.com/view/64900/responsive-video</link>
      <description>&lt;p&gt;This responsive video CSS trick was discovered by tjkdesign.com. I've blogged about it before, you may read the details here. It makes the video embed to expand fullwidth to the boundary.&lt;/p&gt;</description>
      <pubDate>Thu, 17 May 2012 07:00:51 UTC</pubDate>
      <guid>https://snipplr.com/view/64900/responsive-video</guid>
    </item>
    <item>
      <title>(CSS) Elastic Videos for Responsive Design - thewickedchemist</title>
      <link>https://snipplr.com/view/63284/elastic-videos-for-responsive-design</link>
      <description>&lt;p&gt;Originally from: http://webdesignerwall.com/tutorials/css-elastic-videos&lt;/p&gt;</description>
      <pubDate>Sun, 12 Feb 2012 12:28:37 UTC</pubDate>
      <guid>https://snipplr.com/view/63284/elastic-videos-for-responsive-design</guid>
    </item>
    <item>
      <title>(PHP) Get YouTube Video ID [Very robust] - jmiller</title>
      <link>https://snipplr.com/view/62238/get-youtube-video-id-very-robust</link>
      <description>&lt;p&gt;This will get the 11-character YouTube video ID from any valid YouTube URL.&#13;
&#13;
Based on http://snipplr.com/view/57065/get-youtube-video-id/ but made more robust to handle additional URL inputs&lt;/p&gt;</description>
      <pubDate>Tue, 03 Jan 2012 17:17:29 UTC</pubDate>
      <guid>https://snipplr.com/view/62238/get-youtube-video-id-very-robust</guid>
    </item>
    <item>
      <title>(HTML) Play media w/ Strobe Media Player - carlskov</title>
      <link>https://snipplr.com/view/60866/play-media-w-strobe-media-player</link>
      <description>&lt;p&gt;Remember to change flashvars (src, poster) and the size of the player in swfobject.embedSWF parameters (428, 240)&lt;/p&gt;</description>
      <pubDate>Wed, 16 Nov 2011 01:55:50 UTC</pubDate>
      <guid>https://snipplr.com/view/60866/play-media-w-strobe-media-player</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 8 - microreviewsorg</title>
      <link>https://snipplr.com/view/58793/html5-video-element-8</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:46:04 UTC</pubDate>
      <guid>https://snipplr.com/view/58793/html5-video-element-8</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 7 - microreviewsorg</title>
      <link>https://snipplr.com/view/58792/html5-video-element-7</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:44:25 UTC</pubDate>
      <guid>https://snipplr.com/view/58792/html5-video-element-7</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 7 - microreviewsorg</title>
      <link>https://snipplr.com/view/58791/html5-video-element-7</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:43:30 UTC</pubDate>
      <guid>https://snipplr.com/view/58791/html5-video-element-7</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 6 - microreviewsorg</title>
      <link>https://snipplr.com/view/58790/html5-video-element-6</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:42:00 UTC</pubDate>
      <guid>https://snipplr.com/view/58790/html5-video-element-6</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 5 - microreviewsorg</title>
      <link>https://snipplr.com/view/58789/html5-video-element-5</link>
      <description>&lt;p&gt;don't download as soon as page loads&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:40:24 UTC</pubDate>
      <guid>https://snipplr.com/view/58789/html5-video-element-5</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 4 - microreviewsorg</title>
      <link>https://snipplr.com/view/58788/html5-video-element-4</link>
      <description>&lt;p&gt;download as soon as page loads but don't play&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:37:43 UTC</pubDate>
      <guid>https://snipplr.com/view/58788/html5-video-element-4</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 3 - microreviewsorg</title>
      <link>https://snipplr.com/view/58787/html5-video-element-3</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:35:40 UTC</pubDate>
      <guid>https://snipplr.com/view/58787/html5-video-element-3</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 2 - microreviewsorg</title>
      <link>https://snipplr.com/view/58786/html5-video-element-2</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:33:55 UTC</pubDate>
      <guid>https://snipplr.com/view/58786/html5-video-element-2</guid>
    </item>
    <item>
      <title>(HTML) html5 video element 1 - microreviewsorg</title>
      <link>https://snipplr.com/view/58785/html5-video-element-1</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 19 Sep 2011 14:25:16 UTC</pubDate>
      <guid>https://snipplr.com/view/58785/html5-video-element-1</guid>
    </item>
    <item>
      <title>(Other) Check browser for &lt;video&gt; support - weidel</title>
      <link>https://snipplr.com/view/58708/check-browser-for-video-support</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 15 Sep 2011 21:32:40 UTC</pubDate>
      <guid>https://snipplr.com/view/58708/check-browser-for-video-support</guid>
    </item>
    <item>
      <title>(PHP) Get All information from youtube video - TimoZachi</title>
      <link>https://snipplr.com/view/58573/get-all-information-from-youtube-video</link>
      <description>&lt;p&gt;This code snippet gets all information from a YouTube video (title, description, duration, thumbnail url, thumbnail width, thumbnail height, etc..) using the video id and YouTube API.&lt;/p&gt;</description>
      <pubDate>Sat, 10 Sep 2011 03:51:42 UTC</pubDate>
      <guid>https://snipplr.com/view/58573/get-all-information-from-youtube-video</guid>
    </item>
    <item>
      <title>(Other) Wordpress - YouTube Custom Post Meta - silentpro</title>
      <link>https://snipplr.com/view/58043/wordpress--youtube-custom-post-meta</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 19 Aug 2011 23:30:49 UTC</pubDate>
      <guid>https://snipplr.com/view/58043/wordpress--youtube-custom-post-meta</guid>
    </item>
    <item>
      <title>(PHP) Validate YouTube Video - peckham</title>
      <link>https://snipplr.com/view/57206/validate-youtube-video</link>
      <description>&lt;p&gt;This function validates the URL of a YouTube video. It supports four kinds of URL: ?v=, /v/, #!v=, and the short version (youtu.be).&#13;
&#13;
To validate the ID a request to YouTube is made, this is done using a personal class utilizing cURL.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Jul 2011 23:55:40 UTC</pubDate>
      <guid>https://snipplr.com/view/57206/validate-youtube-video</guid>
    </item>
    <item>
      <title>(Bash) merge slides &amp; audio for youtube upload with ffmpeg - rowntreerob</title>
      <link>https://snipplr.com/view/56022/merge-slides--audio-for-youtube-upload-with-ffmpeg</link>
      <description>&lt;p&gt;ffmpeg to create video that will upload OK to youtube&#13;
2 pass libx264 encoder followed by 1-pass .wmv output example&lt;/p&gt;</description>
      <pubDate>Sat, 02 Jul 2011 02:03:10 UTC</pubDate>
      <guid>https://snipplr.com/view/56022/merge-slides--audio-for-youtube-upload-with-ffmpeg</guid>
    </item>
    <item>
      <title>(Bash) merge one slide , audio using ffmpeg - output is AUDIO ONLY  in video container ( one slide in vid track) - rowntreerob</title>
      <link>https://snipplr.com/view/55804/merge-one-slide--audio-using-ffmpeg--output-is-audio-only--in-video-container--one-slide-in-vid-track</link>
      <description>&lt;p&gt;podcast to youtube .  the output will upload ok using mpeg container for audio only&#13;
2 examples:&#13;
   2 pass libx264 &#13;
   output .wmv file&lt;/p&gt;</description>
      <pubDate>Tue, 28 Jun 2011 04:16:32 UTC</pubDate>
      <guid>https://snipplr.com/view/55804/merge-one-slide--audio-using-ffmpeg--output-is-audio-only--in-video-container--one-slide-in-vid-track</guid>
    </item>
    <item>
      <title>(ASP) Kentico - JWPlayer file ResolveUrl - inreflection7</title>
      <link>https://snipplr.com/view/55591/kentico--jwplayer-file-resolveurl</link>
      <description>&lt;p&gt;The usual way to resolve a url file path doesn't work with JWPlayer. You'll need a different one because the "+" in ... ?guid="+ Eval("fieldName"))%&gt; will throw an error...&lt;/p&gt;</description>
      <pubDate>Wed, 22 Jun 2011 23:21:23 UTC</pubDate>
      <guid>https://snipplr.com/view/55591/kentico--jwplayer-file-resolveurl</guid>
    </item>
    <item>
      <title>(Apache) .htaccess config for HTML5 videos - benjaminpearson</title>
      <link>https://snipplr.com/view/53437/htaccess-config-for-html5-videos</link>
      <description>&lt;p&gt;Found answer here: http://community.godaddy.com/groups/web-hosting/forum/topic/ogv-in-firefox-for-html5-video/&lt;/p&gt;</description>
      <pubDate>Thu, 12 May 2011 09:48:01 UTC</pubDate>
      <guid>https://snipplr.com/view/53437/htaccess-config-for-html5-videos</guid>
    </item>
    <item>
      <title>(PHP) youtube url video id - KabuqueJoe</title>
      <link>https://snipplr.com/view/52335/youtube-url-video-id</link>
      <description>&lt;p&gt;Returns the video id for any type of youtube url that holds one.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Apr 2011 00:46:34 UTC</pubDate>
      <guid>https://snipplr.com/view/52335/youtube-url-video-id</guid>
    </item>
    <item>
      <title>(jQuery) jQuery videoGallery plugin for use with JW Player - vagrantradio</title>
      <link>https://snipplr.com/view/50022/jquery-videogallery-plugin-for-use-with-jw-player</link>
      <description>&lt;p&gt;This is a plugin for creating a dynamic video gallery. Call videos by rel tag, including title.&lt;/p&gt;</description>
      <pubDate>Fri, 04 Mar 2011 06:39:34 UTC</pubDate>
      <guid>https://snipplr.com/view/50022/jquery-videogallery-plugin-for-use-with-jw-player</guid>
    </item>
    <item>
      <title>(PHP) WP do_shortcode to embed video - jevets</title>
      <link>https://snipplr.com/view/49536/wp-doshortcode-to-embed-video</link>
      <description>&lt;p&gt;Embed a video via PHP without using `the_content` filter in WordPress. From luckykind at http://wordpress.org/support/topic/call-function-called-by-embed-shortcode-direct&lt;/p&gt;</description>
      <pubDate>Thu, 24 Feb 2011 00:34:17 UTC</pubDate>
      <guid>https://snipplr.com/view/49536/wp-doshortcode-to-embed-video</guid>
    </item>
    <item>
      <title>(HTML) Cross-Browser HTML5 Video With Flash or Silverlight Fall-back - blueocto</title>
      <link>https://snipplr.com/view/48500/crossbrowser-html5-video-with-flash-or-silverlight-fallback</link>
      <description>&lt;p&gt;Until recently, playing video files in a web page was notoriously complicated. The user requires a Flash or Silverlight plug-in and even the simplest HTML is a confusing mess.&#13;
&#13;
Few HTML5 features excite developers more than native audio and video. The &lt;audio&gt; and &lt;video&gt; tags allow you to play media files in an HTML5-aware browser without a plug-in. The elements also become part of the DOM so you can create your own player controls, add captions and synchronize JavaScript events with media playback. As a bonus, the basic HTML5 code is far easier to understand.&lt;/p&gt;</description>
      <pubDate>Mon, 07 Feb 2011 09:03:04 UTC</pubDate>
      <guid>https://snipplr.com/view/48500/crossbrowser-html5-video-with-flash-or-silverlight-fallback</guid>
    </item>
    <item>
      <title>(Bash) Linux video screencasting with audio - poluz</title>
      <link>https://snipplr.com/view/48177/linux-video-screencasting-with-audio</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 01 Feb 2011 07:13:38 UTC</pubDate>
      <guid>https://snipplr.com/view/48177/linux-video-screencasting-with-audio</guid>
    </item>
    <item>
      <title>(HTML) HTML5 Embedded Crossbrowser Video - bassdas</title>
      <link>https://snipplr.com/view/47680/html5-embedded-crossbrowser-video</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 22 Jan 2011 01:22:17 UTC</pubDate>
      <guid>https://snipplr.com/view/47680/html5-embedded-crossbrowser-video</guid>
    </item>
    <item>
      <title>(jQuery) Opening YouTube videos in a lightbox. - dropthenerd</title>
      <link>https://snipplr.com/view/47259/opening-youtube-videos-in-a-lightbox</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 17 Jan 2011 03:47:28 UTC</pubDate>
      <guid>https://snipplr.com/view/47259/opening-youtube-videos-in-a-lightbox</guid>
    </item>
    <item>
      <title>(PHP) getting video ID attribute from youTube url with php - dan_hoerr</title>
      <link>https://snipplr.com/view/47110/getting-video-id-attribute-from-youtube-url-with-php</link>
      <description>&lt;p&gt;taken from comments at above URL&lt;/p&gt;</description>
      <pubDate>Fri, 14 Jan 2011 05:49:18 UTC</pubDate>
      <guid>https://snipplr.com/view/47110/getting-video-id-attribute-from-youtube-url-with-php</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 NetConnectShare Class - adrianparr</title>
      <link>https://snipplr.com/view/45586/as3-netconnectshare-class</link>
      <description>&lt;p&gt;This can be used to help load, play and monitor playback of external video.&lt;/p&gt;</description>
      <pubDate>Sat, 11 Dec 2010 01:35:39 UTC</pubDate>
      <guid>https://snipplr.com/view/45586/as3-netconnectshare-class</guid>
    </item>
    <item>
      <title>(PHP) Wordpress Text Widget embed video and images - laurentzziu</title>
      <link>https://snipplr.com/view/45375/wordpress-text-widget-embed-video-and-images</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 07 Dec 2010 07:58:47 UTC</pubDate>
      <guid>https://snipplr.com/view/45375/wordpress-text-widget-embed-video-and-images</guid>
    </item>
    <item>
      <title>(Bash) Converting ovg to avi - wnasich</title>
      <link>https://snipplr.com/view/42663/converting-ovg-to-avi</link>
      <description>&lt;p&gt;source: http://ubuntuforums.org/showthread.php?t=806125&lt;/p&gt;</description>
      <pubDate>Thu, 21 Oct 2010 11:49:46 UTC</pubDate>
      <guid>https://snipplr.com/view/42663/converting-ovg-to-avi</guid>
    </item>
    <item>
      <title>(PHP) Php Function to resize video from YouTube and Vimeo - ginoplusio</title>
      <link>https://snipplr.com/view/42560/php-function-to-resize-video-from-youtube-and-vimeo</link>
      <description>&lt;p&gt;Iâ€™ve made this function that receive the input $video string that contains the dirty embed code as it is from youtube. The second parameter $new_width (if specified) permits to resize the embed code proportionally to the width you need for your template. This function removes also unwanted tags added after the important tag (such as happens from Vimeo embeds that have a p tag after the iframe).&lt;/p&gt;</description>
      <pubDate>Tue, 19 Oct 2010 21:25:47 UTC</pubDate>
      <guid>https://snipplr.com/view/42560/php-function-to-resize-video-from-youtube-and-vimeo</guid>
    </item>
    <item>
      <title>(HTML) Bulletproof web video - myke</title>
      <link>https://snipplr.com/view/41984/bulletproof-web-video</link>
      <description>&lt;p&gt;Well almost ;) This should really cover most any browser out there. If no HTML5 support will fall back to flash, so for this example Flowplayer is required, but any flash video would work.&#13;
&#13;
also FP will play many different formats not just flv.&lt;/p&gt;</description>
      <pubDate>Sun, 10 Oct 2010 15:43:10 UTC</pubDate>
      <guid>https://snipplr.com/view/41984/bulletproof-web-video</guid>
    </item>
    <item>
      <title>(ActionScript 3) Webcam with AS3 - bshantz</title>
      <link>https://snipplr.com/view/41345/webcam-with-as3</link>
      <description>&lt;p&gt;Using the webcam in AS3 is super easy.  You just need to attach the camera class to a video instance.  This is a class that extends the video component for easily implementing a webcam display.&lt;/p&gt;</description>
      <pubDate>Sat, 02 Oct 2010 12:51:36 UTC</pubDate>
      <guid>https://snipplr.com/view/41345/webcam-with-as3</guid>
    </item>
    <item>
      <title>(JavaScript) HTML5 Video Test - ichnoweb</title>
      <link>https://snipplr.com/view/39637/html5-video-test</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 28 Aug 2010 08:13:53 UTC</pubDate>
      <guid>https://snipplr.com/view/39637/html5-video-test</guid>
    </item>
    <item>
      <title>(PHP) Youtube Video ID Regex &amp; PHP Function - Jamie</title>
      <link>https://snipplr.com/view/38481/youtube-video-id-regex--php-function</link>
      <description>&lt;p&gt;I\'ve added an additional case to handle videos linked from a user\'s channel.&lt;/p&gt;</description>
      <pubDate>Thu, 05 Aug 2010 03:09:42 UTC</pubDate>
      <guid>https://snipplr.com/view/38481/youtube-video-id-regex--php-function</guid>
    </item>
    <item>
      <title>(ActionScript 3) Lissage video FLVPlayback - ions</title>
      <link>https://snipplr.com/view/36778/lissage-video-flvplayback</link>
      <description>&lt;p&gt;Permet d'appliquer un lissage Ã  la video, lue dans un composant FLVPlayback. &#13;
Ne pas oublier d'importer la classe : &#13;
import fl.video.*;&lt;/p&gt;</description>
      <pubDate>Wed, 07 Jul 2010 00:50:55 UTC</pubDate>
      <guid>https://snipplr.com/view/36778/lissage-video-flvplayback</guid>
    </item>
    <item>
      <title>(HTML) Standard Flash Player Embed - FLV - mennyj</title>
      <link>https://snipplr.com/view/35851/standard-flash-player-embed--flv</link>
      <description>&lt;p&gt;[via rtcrm]&#13;
&lt;b&gt;Needed:&lt;/b&gt;&lt;br&gt;&#13;
- Video in FLV format.&lt;br&gt;&#13;
- video_player.swf (standard player, which resizes for any flv).&lt;br&gt;&lt;br&gt;&#13;
&#13;
&lt;b&gt;Notes:&lt;/b&gt;&lt;br&gt;&#13;
- SWF and FLV files can live anywhere.&lt;br&gt;&#13;
- Location of FLV is relative to the location of video_player.swf.  (see below - only video_player.swf needs the folder name.)&lt;br&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 18 Jun 2010 00:45:51 UTC</pubDate>
      <guid>https://snipplr.com/view/35851/standard-flash-player-embed--flv</guid>
    </item>
  </channel>
</rss>
