Questions tagged [audiovideoplayback]

The AudioVideoPlayback application programming interface (API) provides for basic playback and simple control of audio and video files.

The AudioVideoPlayback application programming interface (API) provides for basic playback and simple control of audio and video files. For more information, see the Microsoft.DirectX.AudioVideoPlayback managed code reference documentation.

AudioVideoPlayback implementation is internally using DirectShow API.

62 questions
0
votes
1 answer

Is there a trick to resizing a panel and video for playback

I am using directx.audiovideoplayback to play an avi and I want to have it size the video to 320x240 (it's actual size is 1260x876) but when I do what it appears I should do this does not happen. I also tried attaching an event handler for the…
0
votes
3 answers

Any simple way of playing media files in .NET?

are there any ways to play media files inside a WinForms application without having to struggle with VLC controls or similar? What I'd like to do is to open movies or audio files inside, say a panel, and then be able to pause, resume and stop the…
user491650
0
votes
1 answer

How to use Microsoft::DirectX::AudioVideoPlayback to play audio?

I'm writing a simple music player and I need to be able to pause the music so I'm trying to use the Microsoft::DirectX::AudioVideoPlayback API to do this since PlaySound doesn't support that functionality. However the program keeps triggering a…
Yiannis
  • 929
  • 2
  • 11
  • 14
0
votes
1 answer

Playing a video in Windows Phone 7

I'm trying to play a WMV file in WP7 using a MediaElement control, but I always get an "ag_e_network_error" exception in the MediaFailed event of the MediaElement control. I found this solution, but it doesn't work for me because I don't have a…
Carlo
  • 25,602
  • 32
  • 128
  • 176
0
votes
1 answer

Audio disposing problems using AudioVideoPlayback library

I'm trying to make playlist, where music plays one after another. I need to Dispose() Audio, when it finishes, because memory leak will occur. I wrote this code: Audio a = new Audio(@"Music\Title.ogg"); a.Ending += new EventHandler((sender, e) => {…
Paviel Kraskoŭski
  • 1,429
  • 9
  • 16
0
votes
1 answer

Android - How do I capture and loop video to the screen?

I was wondering if anyone knows of a tutorial explaining how to capture the video from the camera on an Android device and then display the video in real time on the screen? I have looked up MediaRecorder, MediaPlayer, Videoview but they all seem…
Donal Rafferty
  • 19,707
  • 39
  • 114
  • 191
0
votes
0 answers

How to fix jittery audio/video on firefox when playback rate set to .5x using javascript?

I am trying to set up an experiment in which I am playing .mp4 videos and changing the playback rates using base Javascript (no libraries) and HTML5 (Mac OSX 10.10.4). When I change the playback rate of a video to .5x, although the audio-video is…
dbm
  • 133
  • 1
  • 1
  • 8
0
votes
1 answer

OpenFrameworks on Raspberry Pi 2

I had some trouble with video playback on OF (and indeed some other media libraries such as GStreamer) - specifically that it was flipped vertically and horizontally. Upon installing OF and running binaries according to examples in the excellent…
0
votes
1 answer

Choppy audio when decoding audio/video with xuggler

So I'm writing an audio decoder for a pre-existing video decoder that works in libGDX. The problem is, when the audio code wasn't threaded, the audio and video was choppy. The audio would play a chunk, and then the video would play a chunk. My…
Scuba Steve
  • 1,541
  • 1
  • 19
  • 47
0
votes
0 answers

iOs-Xcode-Do something while video is in playback

i would like to known if it is possible to do something while a video is in playback on the iphone.. it is quite the same of subtitles but i would like to do some action for example vibrate or play an other sound or display a new label...all of this…
0
votes
1 answer

project freeze when build in c# project using direct x sdk

I have to use direct x sdk for my team project. but there's a problem with Microsoft.DirectX.AudioVideoPlayback. if there are some apis or instructions about directX sdk in project, Whole project is freezed. whole project had no problem before using…
user3867261
  • 109
  • 1
  • 2
  • 7
0
votes
2 answers

Google TV ― video playback stops working

I created a Google TV application that plays two local videos stored in the res/raw folder. The application starts running fine, but then locks up at random times. After it locks up, I get the "Sorry, cannot play this video." message when I try to…
0
votes
1 answer

How to develop videoplayback software

I am trying to develop a video player just for fun and for the learning experience like media player or vlc. I was wondering how do media players project these video files to user? how to decode these video files into a video? samples of algorithms…
Hasitha Shan
  • 2,900
  • 6
  • 42
  • 83
0
votes
1 answer

video play and stop in android from xml parser

I have follows below xml feed: Here how can i play video ??? i have wrote the below…
0
votes
1 answer

Recording and playback actions with AS3

i am making a drawing app which allow users to draw freely on the canvas, there will be sound coming out on certain range of coordinates x,y. my goal is to allow users to record and playback the whole actions later on and watch it like a video. I am…