Questions tagged [wmv]

WMV, or Windows Media Video, is a video compression and container format created by Microsoft for several proprietary codecs.

WMV, or Windows Media Video, is a video compression and container format created by Microsoft for several proprietary codecs. The Internet media type is video/x-ms-wmv.

169 questions
19
votes
5 answers

How to get better quality converting MP4 to WMV with ffmpeg?

I am converting MP4 files to WMV with these two rescaling commands: ffmpeg -i test.mp4 -y -vf scale=-1:360 test1.wmv ffmpeg -i test.mp4 -y -vf scale=-1:720 test2.wmv I've also tried: ffmpeg -g 1 -b 16000k -i test1.mp4 test1.wmv However, the .wmv…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
14
votes
6 answers

How can I create a video from a directory of images in C#?

I have a directory of bitmaps that are all of the same dimension. I would like to convert these bitmaps into a video file. I don't care if the video file (codec) is wmv or avi. My only requirement is that I specify the frame rate. This does not…
JP Richardson
  • 38,609
  • 36
  • 119
  • 151
12
votes
4 answers

WMV streaming file size limit

I have a windows media player embedded in my web page view:
Dean.DePue
  • 1,013
  • 1
  • 21
  • 45
8
votes
4 answers

Unable to play video Microsoft media player for html pages

i am trying to play videos on my site. its working on production. After publishing site on domain player isn't playing videos. Instead its showing msgs on media player bar like 'Preparing to connect', 'Connecting...' and 'Ready', which shows dark…
Saghir A. Khatri
  • 3,429
  • 6
  • 45
  • 76
8
votes
4 answers

How to generate video screencaps of video files via linux commandline

Is there a command line program for linux (ubuntu) which can generate a large image containing say 6 caps from a given video (e.g. WMV) laid out storyboard style (I know on Windows media player classic can do this)? I need this for part of a script…
Robin Barnes
  • 13,133
  • 15
  • 44
  • 45
6
votes
2 answers

how to embed WMV files in my html file

i have made some demo movies in WMV format that i want to embed in my html page. I've found some code to do that, but one thing annoys me: it shows a black front in stead of a picture of the first frame. And i can ofcourse put some descriptive text…
Michel
  • 23,085
  • 46
  • 152
  • 242
6
votes
3 answers

Hardware accelerated video in DirectShow / WinForms

Currently prototyping a Windows .NET app that needs to play back high definition WMV and H264 video. My test files are full 1080p. The target hardware has weak Atom processors but strong NVidia 9400 graphics. I know the graphics are integrated but…
TheNextman
  • 12,428
  • 2
  • 36
  • 75
5
votes
1 answer

Converting wmv to mp4 using ffmpeg

I want convert wmv file to mp4 using ffmpeg. Video details 1920x1080, total bitrate 7978kbps, frame rate 29 fps. Image slideshow, no audio. It show audio data, but there was no option to disable audio when I created wmv. ffmpeg -i input.wmv -c:v…
user4515590
5
votes
1 answer

Convert video from Mp4 ,avi format to wmv format using C#

I have used Microsoft Expression Encoder to append two videos and this thing works Fine The problem is that when i tried to append videos other than 'wmv' ,it gives exception of FileNot Supported I searched on google but i was unable to find the…
Charlie
  • 4,827
  • 2
  • 31
  • 55
5
votes
2 answers

How can I play wmv video in HTML player?

I want to Play wmv video in browser, and place header and footer in the page. I am unable to play mp4 video, but I want to play wmv. I google it but unable to find anything. Kindly guide me ho to play wmv video from HTML page.
user3480644
  • 577
  • 4
  • 8
  • 23
5
votes
1 answer

Embed .WMV files in Chrome

I had a solution to show both .MP4 and .WMV embedded in the browser. It worked fine in both IE and Chrome, but for some time ago it stopped working in Chrome. Chrome will not show any files (mp4 or wmv), but it works fine in IE. I googled it, and…
Eva Kanerot
  • 51
  • 1
  • 3
4
votes
3 answers

WPF Media Element Video Source

I try to set video source in XAML code, video doesn't play: So I try to set video source in codebehind, that doesn't play too. : bgvideo.Source = new…
Murat
  • 878
  • 3
  • 11
  • 19
4
votes
2 answers

What video formats (hopefully WMV) support transparencies?

I'm trying to animate my desktop application for a client. I would like to animate the background with a loop and offer region specific animations on top of this (allowing transparencies to see the layered animations underneath). Is this possible…
Jason
  • 16,739
  • 23
  • 87
  • 137
4
votes
1 answer

Why does Process.Start(string) return null for a WMV file

So I have a WMV video file: var fileName = @"C:\MyFolder\MyVideo.WMV" and I am starting the video and getting my Process ID with the code: var process = Process.Start(fileName); if (process != null) { processId = process.Id; } Although my…
JKennedy
  • 18,150
  • 17
  • 114
  • 198
4
votes
0 answers

ffmpeg Unrecognized option...Error splitting the argument list: Option not found

This is probably a pretty simple question for those of you who use ffmpeg, but I'm very new at it, and I'm using it on Windows, which apparently isn't the norm. From cmd, with my environment variable set at my ffmpeg install directory, I'm…
Ian Zane
  • 2,209
  • 5
  • 23
  • 21
1
2 3
11 12