.NET news » Multimedia Multimedia Rss Feed

Video Encoding: Saving and Reusing Settings for Video Encoding

Here's a simple way to allow video-processing applications to save compressed video using any codec available on the machine, without the need to manually specify the codec settings each time the app is started or used on multiple/remote/embedded machines.
29 Nov 2011, 18:00:00   Source: Video Encoding: Saving and Reusing Settings for Video...   Tags: Multimedia

ASP.NET Security: Hack-Proofing Your ASP.NET Applications

Almost every day, the mainstream media reports that another site has been hacked. Luckily, many of these attacks are surprisingly easy to protect against. Adam Tuliper explains how these attacks occur and discusses best practices for preventing them.
29 Nov 2011, 18:00:00   Source: ASP.NET Security: Hack-Proofing Your ASP.NET Applications   Tags: Multimedia

WPF Audio Player

Playing audio files in .NET/WPF (or replacing SoundPlayer and MediaPlayer)
2 Aug 2011, 10:56:00   Source: WPF Audio Player   Tags: Multimedia

A "little snake" leads us through the most important features of the Windows Phone 7

Analyzing the Snake game, we'll study an application for the new Windows Phone 7 platform, focusing on localization, Inversion of Control, navigation, transition effects, triggers, Isolated Storage, audio and we'll also use Blend to create a rounded glowing button, and other things...
29 Jan 2011, 13:08:00   Source: A "little snake" leads us through the most...   Tags: Multimedia

Playing Midi Files with DirectMusic

A DirectX 8 class to perform Midi music playback
30 Dec 2010, 07:52:00   Source: Playing Midi Files with DirectMusic   Tags: Multimedia

PracticeSharp (or Practice#) - A utility for practicing your musical instrument with playback.

A playback practice tool for musicians that allows slowing down, changing pitch, defining presets and loops on music files.
23 Nov 2010, 12:57:00   Source: PracticeSharp (or Practice#) - A utility for practicing...   Tags: Multimedia

Media Player Class

An advanced media player class using WindowsMediaPlayerClass. Supports crossfading/fading.
8 Nov 2010, 09:55:00   Source: Media Player Class   Tags: Multimedia

CAS (Code access security) & .NET 4.0 Security model FAQ (With Full Video demonstration)

CAS (Code access security) & .NET 4.0 Security model FAQ (With Full Video demonstration)
23 Oct 2010, 10:27:00   Source: CAS (Code access security) & .NET 4.0 Security model...   Tags: Multimedia

Play XM in C++ - from file and memory

Play XM music files in pure C++ using unpacked BASSMOD.dll from file and memory
22 Oct 2010, 17:55:00   Source: Play XM in C++ - from file and memory   Tags: Multimedia

Optimize Images Using the ASP.NET Sprite and Image Optimization Framework

The HTML markup of a web page includes the page's textual content, semantic and styling information, and, typically, several references to external resources. External resources are content that is part of web page, but are separate from the web page's markup - things like images, style sheets, script files, Flash videos, and so on. When a browser requests a web page it starts by downloading its HTML. Next, it scans the downloaded HTML for external resources and starts downloading those.

A page with many external resources usually takes longer to completely load than a page with fewer external resources because there is an overhead associated with downloading each external resource. For starters, each external resource requires the browser to make an HTTP request to retrieve the resource. What's more, browsers have a limit as to how many HTTP requests they will make in parallel. For these reasons, a common technique for improving a page's load time is to consolidate external resources in a way to reduce the number of HTTP requests that must be made by the browser to load the page in its entirety.

This article examines the free and open-source ASP.NET Sprite and Image Optimization Framework, which is a project developed by Microsoft for improving a web page's load time by consolidating images into a sprite or by using inline, base-64 encoded images. In a nutshell, this framework makes it easy to implement practices that will improve the load time for a web page that displays several images.

12 Oct 2010, 19:00:00   Source: Optimize Images Using the ASP.NET Sprite and Image...   Tags: Multimedia