Hello,
My company's website allows its members to list videos of their work online on their own personal 'press kit'. Until recently, we allowed them to upload several types of video onto their pages, but we've now changed our policies and incorporated an flv only video player. Any new video that's uploaded is automatically converted to flv upon upload - however, we still had about 2000 old videos left in non flv state.
I've been converting these non flv videos to flv, and have had pretty good success with using my websites upload converter or if need be, sothink video encoder for adobe. However, .mov's have been causing the biggest trouble. The two common issues are that the videos won't fit into the flv video player upon conversion/upload(see attachment), or the sound comes out garbled. With these files, I personally convert them to flv before uploading, to ensure they'll play/fit properly - but the problem usually persists. In the screenshot I've attached, you'll see a video that I converted into flv, into the proper dimensions 320x240, yet no matter what I do it'll appear smaller than it should be, and in the corner of the player. Is there some secret to converting mov's to flv's that I don't know about? I've exhausted every possible solution I could come up with, including converting with larger dimensions, playing with the zoom function, converting the files to another format before converting them to flv - and the outcome is always the same. No one here seems to know a solution so I'm asking for expert advice. The only other thing I can think of is that it's something with our uploader itself, but I don't know how to figure that out/get our tech department to fix it.
Here are the flv requirements that I'm aware of on our player -
The conversion process will change the size of your video to 320 x 240 if it's not that size already. Also, the "audio sampling rate" of the video must be 11025 hz, 22050 hz, or 44,100 hz. Otherwise the audio may be garbled on playback.
and here are the sothink specifications that have worked for (almost) all other file types -
Profiles: User-defined
Audio Settings
Enable audio-Checked off
Sample rate: 44100 kz
Bit rate: 96 Kbps
Channels: Stereo
Gain: DO NOT TOUCH
Video Settings
Width: 640
Height: 480
Bit rate: 350
Frame Rate: 30
Key frame rate: 12
Zoom mode: LetterBox
any direction you can give me is greatly appreciated - including other software, other specifications, ect. Thank you!!!
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 27 of 27
			
		- 
	
- 
	flv and mov are container formats that can store multiple different video & audio types. It's quite non descriptive. It's like saying "car" . But "car" could encompass a Ferrari, or it could be a Yugo - but there is a big difference between the two 
 
 You need to provide more information on the input type and export goal (ie. what kind of mov, what kind of flv? what type of video & audio compression).
 
 Use mediainfo
- 
	Try a FREE and better convert than sothink crapware. Like xmedia recode. 
- 
	haha thanks for the tip - I personally don't like Sothink either. Last edited by KMartin; 30th Aug 2010 at 16:20. 
- 
	I apologize for my lack of knowledge about these video types, but I'll try to answer you question as best I can. Unfortunately I wasn't able to get as much information about the flv specs as I'd like other than the info I provided above. Our tech department has limited knowledge about videos, which is why I'm coming to you guys. If you need me too I'll continue to press for more information, but please let me know what to specifically ask. 
 
 As for this specific mov file, I've uploaded it so you can see it for yourself. Please let me know if you need any further information. Thanks!
- 
	sorry, the flv specs i provided may have been confusing because i copy and pasted from our upload page. here is the only information they've given me - 
 
 
 dimensions 320 x 240
 44,100 hz
 file must be under 30 MB
- 
	Command line removed Last edited by Case; 25th Aug 2010 at 01:49. Reason: Didn't work as planned 
- 
	You can use the program suggested above, mediainfo . Open a flv that you know works with your system , and use view=>text, copy & paste the information back here 
 
 I played with your sample mov , and found a possible solution but it's quite convoluted. I can go into detail, but I can tell you it will be way over your head if you're not already familiar with some of the tools like avisynth . Hopefully someone else can find an easier solution.
 
 The problem is most of the tools do not decode that mov corrrectly (as depicted in your 1st screenshot), and they pass that on to the encode. If you decode through the quicktime API, then you can get a proper sized image
 
 For now,
 1) can you test if this attached flv is compatible with your system (i.e. does it play in your company website player correctly) ?
 
 2) please post the mediainfo text information requested earlier
 
 3) do all the mov's that you have problems with exhibit the same characteristics? or are they a different kind ? (i.e. you should use mediainfo on those too)
- 
	I think you're onto something here. When I tried to convert with two different pre-compiled ffmpeg binaries, the result for one copy did show the bad decode (~2/3 size in upper left corner), while the other did a good decode. The difference must be in the compile options and/or versions. For some reason that I can't detect, the first ffmpeg thinks the source file is 352x288 [PAR 12:11 DAR 4:3]. The second correctly detects 240x180. 
- 
	If you can figure out what that particular ffmpeg version was compiled with , or even list that version or binary for the OP, it would be alot easier for him . He could even use a batch file to convert everything 
 
 Something might be different between the libavcodec decoder between the versions you tested out on . If you -s 320x240 on the working version, does it scale correctly and create a working file ?
- 
	I used Mac OS binaries of ffmpeg as used by (1) MovieConverter Studio 1.5.3 and (2) ffmpegX 0.0.9y, so I doubt the OP could use those directly. 
 
 FFmpeg version SVN-r16722, Copyright (c) 2000-2009 Fabrice Bellard, et al.
 configuration: --enable-postproc --enable-gpl --enable-pthreads --enable-static --disable-shared --enable-gray --enable-libx264 --enable-libmp3lame --enable-libgsm --enable-libfaac --enable-libfaad --enable-swscale --enable-avfilter --disable-decoder=aac
 libavutil 49.14. 0 / 49.14. 0
 libavcodec 52.11. 0 / 52.11. 0
 libavformat 52.25. 0 / 52.25. 0
 libavdevice 52. 1. 0 / 52. 1. 0
 libavfilter 0. 2. 0 / 0. 2. 0
 libswscale 0. 6. 1 / 0. 6. 1
 libpostproc 51. 2. 0 / 51. 2. 0
 built on Jan 25 2009 15:58:46, gcc: 4.0.1 (Apple Computer, Inc. build 5370)I used the same simple syntax for both: ffmpeg -i input.mov -s 320x240 output.flv . Adding more detailed parameters didn't make a difference for the decode error. Scaling to other sizes kept the ratio of the small movie in a larger black canvas, confirming the decode aspect of it, imho.FFmpeg version CVS, Copyright (c) 2000-2004 Fabrice Bellard
 Mac OSX universal build for ffmpegX
 configuration: --enable-mp3lame --enable-gpl --disable-vhook --disable-ffplay --disable-ffserver --enable-a52 --enable-xvid --enable-faac --enable-faad --enable-amr_nb --enable-pthreads --enable-x264
 libavutil version: 49.0.0
 libavcodec version: 51.9.0
 libavformat version: 50.4.0
 built on Apr 15 2006 08:41:02, gcc: 3.3 20030304 (Apple Computer, Inc. build 1666)
- 
	but scaling for the "working" version works correctly ? ie. it's decoded correctly and scaled correctly ? 
 
 which was the one that was working? I can test r16722 windows build if that's the working version
 
 if it's the ffmpegx version, it's using a really old version of libavcodec , would have to go far back to find an old ffmpeg build
- 
	I found a GUI based solution for this which would be easier for him to use 
 
 Apparently you can do batch encode if you use command line interface (not sure how to do that in avidemux , but you could ask in the avidemux forum) , because it would suck to do 1 at a time if you have a few thousand...
 
 video=> sorensen spark (configure your bitrate if you want)
 video=> filters => resize to 320x240
 audio=> mp3 (lame) (configure your bitrate if you want, and resample to 44.1Khz if you want)
 format=> flv
 press save with extension (e.g. "myvideo.flv")
- 
	Yes. 
 
 Unfortunately, the newer ffmpeg from MovieConverter showed the same symptom as the OP's initial conversion. The older ffmpegX binary decoded and scaled correctly.Originally Posted by poisondeathray
 
 A solution should come from new/current releases, not old ones...
- 
	kind of like how new coca-cola was better than the original right ?  
 
 I agree with what you say, but if it's a persistent bug that got propagated, I think it would be better to identify what the underlying problem was in the first place and patch the new ffmpeg builds . You would have to look at the old ones to do that.
 
 ffmpeg would be ideal for the op's situation, because of ease of batch conversion . The other 2 possible solutions I suggested earlier are not user friendly for multiple files (avidemux might be ok in CLI mode, and you can batch script avisynth and use ffmpeg to ENcode)
- 
	Most of what you're talking about it over my head! But thank you so much for taking so much time looking into this weird problem. 
 
 I tried to upload your video to our site and unfortunately the size issue persists.
 
 I've converted these other types of files - swf, wmv, wma, rm, ram, mpg, mp4 and avi. I did have a couple problems converting a few of the formats here and there, but could almost always fix the issue by converting to flv with sothink first.
 
 Other problem upload details -
 
 - This mov file fits properly but the sound remains garbled upon upload
 
 General
 Complete name : C:\Users\kmartin\Videos\already converted, save just in case\11281_JonKoonsinaMinute.mov
 Format : MPEG-4
 Format profile : QuickTime
 Codec ID : qt
 File size : 6.82 MiB
 Duration : 1mn 27s
 Overall bit rate : 652 Kbps
 Encoded date : UTC 2009-04-02 18:10:45
 Tagged date : UTC 2009-04-02 18:16:25
 Writing library : Apple QuickTime
 
 Video
 ID : 2
 Format : AVC
 Format/Info : Advanced Video Codec
 Format profile : Main@L5.0
 Format settings, CABAC : No
 Format settings, ReFrames : 2 frames
 Format settings, GOP : M=2, N=30
 Codec ID : avc1
 Codec ID/Info : Advanced Video Coding
 Duration : 1mn 27s
 Bit rate mode : Variable
 Bit rate : 554 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 14.985 fps
 Color space : YUV
 Chroma subsampling : 4:2:0
 Bit depth : 8 bits
 Scan type : Progressive
 Bits/(Pixel*Frame) : 0.482
 Stream size : 5.80 MiB (85%)
 Language : English
 Encoded date : UTC 2009-04-02 18:15:38
 Tagged date : UTC 2009-04-02 18:16:25
 Color primaries : BT.601-6 525, BT.1358 525, BT.1700 NTSC, SMPTE 170M
 Transfer characteristics : BT.709-5, BT.1361
 Matrix coefficients : BT.601-6 525, BT.1358 525, BT.1700 NTSC, SMPTE 170M
 
 Audio
 ID : 1
 Format : AAC
 Format/Info : Advanced Audio Codec
 Format version : Version 4
 Format profile : LC
 Format settings, SBR : No
 Codec ID : 40
 Duration : 1mn 27s
 Bit rate mode : Constant
 Bit rate : 96.0 Kbps
 Channel(s) : 2 channels
 Channel positions : Front: L R
 Sampling rate : 32.0 KHz
 Stream size : 1 009 KiB (14%)
 Language : English
 Encoded date : UTC 2009-04-02 18:15:38
 Tagged date : UTC 2009-04-02 18:16:25
 
 -----------------------------------------------------------
 
 2. another mov that's garbled upon upload
 
 General
 Complete name : C:\Users\kmartin\Downloads\24947_FunkySampler.mov
 Format : MPEG-4
 Format profile : QuickTime
 Codec ID : qt
 File size : 1.68 MiB
 Duration : 1mn 2s
 Overall bit rate : 224 Kbps
 Encoded date : UTC 2008-01-14 05:05:59
 Tagged date : UTC 2008-01-14 05:06:00
 Writing library : Apple QuickTime
 
 Video
 ID : 2
 Format : AVC
 Format/Info : Advanced Video Codec
 Format profile : Main@L1.2
 Format settings, CABAC : No
 Format settings, ReFrames : 2 frames
 Codec ID : avc1
 Codec ID/Info : Advanced Video Coding
 Duration : 1mn 2s
 Bit rate mode : Variable
 Bit rate : 102 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 11.988 fps
 Color space : YUV
 Chroma subsampling : 4:2:0
 Bit depth : 8 bits
 Scan type : Progressive
 Bits/(Pixel*Frame) : 0.110
 Stream size : 781 KiB (45%)
 Language : English
 Encoded date : UTC 2008-01-14 05:05:57
 Tagged date : UTC 2008-01-14 05:06:00
 Color primaries : BT.601-6 525, BT.1358 525, BT.1700 NTSC, SMPTE 170M
 Transfer characteristics : BT.709-5, BT.1361
 Matrix coefficients : BT.601-6 525, BT.1358 525, BT.1700 NTSC, SMPTE 170M
 
 Audio
 ID : 1
 Format : AAC
 Format/Info : Advanced Audio Codec
 Format version : Version 4
 Format profile : LC
 Format settings, SBR : No
 Codec ID : 40
 Duration : 1mn 2s
 Bit rate mode : Constant
 Bit rate : 96.0 Kbps
 Channel(s) : 2 channels
 Channel positions : Front: L R
 Sampling rate : 32.0 KHz
 Stream size : 749 KiB (44%)
 Language : English
 Encoded date : UTC 2008-01-14 05:05:57
 Tagged date : UTC 2008-01-14 05:06:00
 
 -----------------------------------------------------------------------
 
 3. sound removed upon upload
 
 General
 Complete name : C:\Users\kmartin\Videos\29754_Volcano.mov
 Format : MPEG-4
 Format profile : QuickTime
 Codec ID : qt
 File size : 8.08 MiB
 Duration : 3mn 25s
 Overall bit rate : 329 Kbps
 Encoded date : UTC 2009-02-16 14:47:01
 Tagged date : UTC 2009-02-16 14:47:04
 Writing library : Apple QuickTime
 
 Video
 ID : 2
 Format : AVC
 Format/Info : Advanced Video Codec
 Format profile : Main@L1.2
 Format settings, CABAC : No
 Format settings, ReFrames : 2 frames
 Codec ID : avc1
 Codec ID/Info : Advanced Video Coding
 Duration : 3mn 25s
 Bit rate mode : Variable
 Bit rate : 218 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 15.000 fps
 Color space : YUV
 Chroma subsampling : 4:2:0
 Bit depth : 8 bits
 Scan type : Progressive
 Bits/(Pixel*Frame) : 0.189
 Stream size : 5.35 MiB (66%)
 Language : English
 Encoded date : UTC 2009-02-16 14:46:58
 Tagged date : UTC 2009-02-16 14:47:04
 Color primaries : BT.601-6 525, BT.1358 525, BT.1700 NTSC, SMPTE 170M
 Transfer characteristics : BT.709-5, BT.1361
 Matrix coefficients : BT.601-6 525, BT.1358 525, BT.1700 NTSC, SMPTE 170M
 
 Audio
 ID : 1
 Format : AAC
 Format/Info : Advanced Audio Codec
 Format version : Version 4
 Format profile : LC
 Format settings, SBR : No
 Codec ID : 40
 Duration : 3mn 25s
 Bit rate mode : Constant
 Bit rate : 80.0 Kbps
 Channel(s) : 2 channels
 Channel positions : Front: L R
 Sampling rate : 32.0 KHz
 Stream size : 1.96 MiB (24%)
 Language : English
 Encoded date : UTC 2009-02-16 14:46:58
 Tagged date : UTC 2009-02-16 14:47:04
 
 -------------------------------------------------------------------
 
 4. another mov with size problem
 
 General
 Complete name : C:\Users\kmartin\Videos\21389_MagicalMayhemDemo.mo v
 Format : MPEG-4
 Format profile : QuickTime
 Codec ID : qt
 File size : 5.74 MiB
 Duration : 3mn 33s
 Overall bit rate : 226 Kbps
 Encoded date : UTC 2008-05-05 19:57:18
 Tagged date : UTC 2008-05-05 19:57:20
 Writing library : Apple QuickTime
 
 Video
 ID : 2
 Format : H.263
 Codec ID : h263
 Duration : 3mn 33s
 Bit rate mode : Variable
 Bit rate : 193 Kbps
 Width : 240 pixels
 Height : 180 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Variable
 Frame rate : 11.627 fps
 Minimum frame rate : 0.999 fps
 Maximum frame rate : 11.988 fps
 Bits/(Pixel*Frame) : 0.384
 Stream size : 4.91 MiB (86%)
 Language : English
 Encoded date : UTC 2008-05-05 19:51:51
 Tagged date : UTC 2008-05-05 19:57:20
 
 Audio
 ID : 1
 Format : Qdesign 2
 Codec ID : QDM2
 Codec ID/Info : QDesign Music 2
 Duration : 3mn 33s
 Bit rate mode : Constant
 Bit rate : 176.4 Kbps
 Channel(s) : 2 channels
 Sampling rate : 22.05 KHz
 Bit depth : 16 bits
 Stream size : 4.48 MiB (78%)
 Language : English
 Encoded date : UTC 2008-05-05 19:51:50
 Tagged date : UTC 2008-05-05 19:57:20
 
 
 After speaking with our tech department again, it seems that every video uploaded in flv should be compatible with our player, and if it doesn't it's a problem with the upload or the file is corrupt. Based on my experience with our flv player, it appears that our player is compatible with a wide variation of flv settings, and that these problem videos are somehow outside of that range. So I'm not sure if providing you with the description of a single working flv file with help. Here's info on three videos that were uploaded in flv format and play perfectly -
 
 General
 Complete name : C:\Users\kmartin\Downloads\39817_DJMartyWeddings.f lv
 Format : Flash Video
 File size : 3.74 MiB
 Duration : 1mn 9s
 Overall bit rate : 450 Kbps
 Tagged date : UTC 2010-07-08 03:03:28
 Tagging application : inlet media FLVTool2 v1.0.6 - http://www.inlet-media.de/flvtool2
 
 Video
 Format : H.263
 Duration : 1mn 9s
 Bit rate : 378 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 30.000 fps
 Bits/(Pixel*Frame) : 0.164
 Stream size : 3.15 MiB (84%)
 
 Audio
 Format : MPEG Audio
 Format version : Version 2
 Format profile : Layer 3
 Duration : 1mn 9s
 Bit rate mode : Constant
 Bit rate : 64.0 Kbps
 Channel(s) : 1 channel
 Sampling rate : 22.05 KHz
 Bit depth : 16 bits
 Stream size : 576 KiB (15%)
 Writing library : LAME3.97
 
 -------------------------------------------------------------
 
 General
 Complete name : C:\Users\kmartin\Downloads\39255_OvertheRainbow.fl v
 Format : Flash Video
 File size : 5.78 MiB
 Duration : 46s 811ms
 Overall bit rate : 1 036 Kbps
 
 Video
 Format : VP6
 Duration : 46s 811ms
 Bit rate : 700 Kbps
 Width : 1 440 pixels
 Height : 1 080 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 29.970 fps
 Bits/(Pixel*Frame) : 0.015
 Stream size : 3.91 MiB (68%)
 
 Audio
 Format : MPEG Audio
 Format version : Version 1
 Format profile : Layer 3
 Mode : Joint stereo
 Mode extension : MS Stereo
 Duration : 46s 811ms
 Bit rate mode : Constant
 Bit rate : 128 Kbps
 Channel(s) : 2 channels
 Sampling rate : 44.1 KHz
 Bit depth : 16 bits
 Stream size : 731 KiB (12%)
 
 ------------------------------------------------------------
 
 General
 Complete name : C:\Users\kmartin\Downloads\37110_MyHeartBelongsToD addy.flv
 Format : Flash Video
 File size : 14.9 MiB
 Duration : 4mn 17s
 Overall bit rate : 486 Kbps
 
 Video
 Format : H.263
 Duration : 4mn 17s
 Bit rate : 375 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 25.000 fps
 Bits/(Pixel*Frame) : 0.195
 Stream size : 11.5 MiB (77%)
 
 Audio
 Format : MPEG Audio
 Format version : Version 1
 Format profile : Layer 3
 Mode : Joint stereo
 Mode extension : MS Stereo
 Duration : 4mn 17s
 Bit rate mode : Constant
 Bit rate : 96.0 Kbps
 Channel(s) : 2 channels
 Sampling rate : 44.1 KHz
 Bit depth : 16 bits
 Stream size : 2.95 MiB (20%)
 Writing library : LAME3.98.2
 
 And if this helps, here's info on a mov that went through our website converter to become an flv, and plays fine -
 
 General
 Complete name : C:\Users\kmartin\Downloads\27828_TracyRoseVideo.fl v
 Format : Flash Video
 File size : 14.9 MiB
 Duration : 4mn 45s
 Overall bit rate : 439 Kbps
 Tagged date : UTC 2010-08-19 22:57:12
 Tagging application : inlet media FLVTool2 v1.0.6 - http://www.inlet-media.de/flvtool2
 
 Video
 Format : H.263
 Duration : 4mn 45s
 Bit rate : 367 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 23.000 fps
 Bits/(Pixel*Frame) : 0.208
 Stream size : 12.6 MiB (84%)
 
 Audio
 Format : MPEG Audio
 Format version : Version 2
 Format profile : Layer 3
 Duration : 4mn 45s
 Bit rate mode : Constant
 Bit rate : 64.0 Kbps
 Channel(s) : 1 channel
 Sampling rate : 22.05 KHz
 Bit depth : 16 bits
 Stream size : 2.30 MiB (15%)
 
 
 
 
 
 
 
- 
	Then I suspect there is something wrong with your website software , or it's hasn't been updated for a few years. 
 
 That uploaded file conforms to Adobe Flash specs and plays fine in several flash players including, embedded flash players, and stand alone flash players.
 
 It seems like your software has issues with AAC audio - all the examples with "garbled audio" had AAC audio . There doesn't seem to be a consistent pattern behind the size issue
 
 Can you test this attached avidemux converted file?
- 
	That worked!!!! Thank you for fixing that. What can I do on my end, or is it too complicated? <3   
- 
	Great, I was able to do it on my own. It's probably only about 100 files so I can do them one by one. 
 
 You mentioned a problem with our player and AAC audio - what can I do to fix the garbled videos (i'm assuming using avidmux with the MP# setting but I could be wrong) And is this something I should bring up to tech to try and fix (could happen to other people)
- 
	Does your software re-encode the user uploads ? like youtube ? or does it take the ones unaltered (not re-encoded) ? 
 
 The reason I say it has problems with AAC audio, is all the examples you posted that had "garbled" audio used AAC audio
 
 AAC has been used for years now in flash, which is another reason why I suspect the programs used by your website are quite outdated
 
 There is nothing you can do to a video that has garbled audio already.
 
 But if you have a non garbled source to begin with, you can use MP3 audio, like the example above instead , or tell your users not to upload videos AAC audio . Or better yet, update the software on your company site. The video & audio compression used is very poor and outdated (translation: low quality and waste of bandwith. Your company could save money in bandwidth costs and exhibit higher quality video & audio by using modern technology)
- 
	Thanks! 
 
 We only alter the file if it's not in flv upon upload. If the file is already in flv, I believe we don't change it at all.
 
 I've been informed that we currently use '.NET media handler pro' is that a bad choice? Or do we just need to update our software? I may be able to recommend something else if it works better, as we do occasionally have problems upon upload.
 
 I just converted a mov file with the resizing issue, but now the audio is garbled! I'm sure I'm using the wrong setting or something. I did MP3, resampling 44100, bit rate 96. Is this wrong? Here's the original file's info -
 
 Duration : 2mn 26s
 Bit rate mode : Variable
 Bit rate : 487 Kbps
 Width : 240 pixels
 Height : 180 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 11.988 fps
 Bits/(Pixel*Frame) : 0.940
 Stream size : 8.51 MiB (87%)
 Language : English
 Encoded date : UTC 2004-09-14 12:56:33
 Tagged date : UTC 2004-09-14 12:56:42
 
 Audio
 ID : 1
 Format : Qdesign 2
 Codec ID : QDM2
 Codec ID/Info : QDesign Music 2
 Duration : 2mn 26s
 Bit rate mode : Constant
 Bit rate : 176.4 Kbps
 Channel(s) : 2 channels
 Sampling rate : 22.05 KHz
 Bit depth : 16 bits
 Stream size : 3.08 MiB (32%)
 Language : English
 Encoded date : UTC 2004-09-14 12:56:33
 Tagged date : UTC 2004-09-14 12:56:42
 
 and the file converted using avidemux -
 
 General
 Complete name : C:\Users\kmartin\Videos\vivalasvegas.flv
 Format : Flash Video
 File size : 24.4 MiB
 Duration : 2mn 26s
 Overall bit rate : 1 397 Kbps
 
 Video
 Format : H.263
 Duration : 2mn 26s
 Bit rate : 1 237 Kbps
 Width : 320 pixels
 Height : 240 pixels
 Display aspect ratio : 4:3
 Frame rate mode : Constant
 Frame rate : 11.988 fps
 Bits/(Pixel*Frame) : 1.344
 Stream size : 21.6 MiB (89%)
 
 Audio
 Format : MPEG Audio
 Format version : Version 1
 Format profile : Layer 3
 Duration : 2mn 26s
 Bit rate mode : Constant
 Bit rate : 96.0 Kbps
 Channel(s) : 2 channels
 Sampling rate : 44.1 KHz
 Bit depth : 16 bits
 Stream size : 1.68 MiB (7%)
 
 if it helps I can send you a link to the page - I just prefer to not post it on the forum
- 
	I am not an expert, but, still I would like to try... 
 
 Following is converted FLV, using FFMpeg CLI.
 I guess, same thing can be done by using Mencoder too... I will gonna try Mencoder later at my ease.
 It can be streamed nicely to 240x180
 
 Download Link : http://www.mediafire.com/?0fhfyjdf98r458g
 
 
 General
 Complete name : 13959_HeartbreakHotel.flv
 Format : Flash Video
 File size : 17.8 MiB
 Duration : 1mn 52s
 Overall bit rate : 1 329 Kbps
 
 Video
 Format : H.263
 Duration : 1mn 52s
 Bit rate : 781 Kbps
 Width : 480 pixels
 Height : 320 pixels
 Display aspect ratio : 3:2
 Frame rate mode : Constant
 Frame rate : 12.000 fps
 Bits/(Pixel*Frame) : 0.424
 Stream size : 10.5 MiB (59%)
 
 Audio
 Format : MPEG Audio
 Format version : Version 1
 Format profile : Layer 3
 Mode : Joint stereo
 Mode extension : MS Stereo
 Duration : 1mn 52s
 Bit rate mode : Variable
 Bit rate : 117 Kbps
 Channel(s) : 2 channels
 Sampling rate : 44.1 KHz
 Bit depth : 16 bits
 Stream size : 1.57 MiB (9%)
 
 Encoder Log:
 FFmpeg Commandline version, Copyright (c) 2000-2010.
 
 l.
 libavutil 50. 3. 0 / 50. 3. 0
 libavcodec 52.27. 0 / 52.27. 0
 libavformat 52.32. 0 / 52.32. 0
 libavdevice 52. 2. 0 / 52. 2. 0
 libavfilter 0. 5. 0 / 0. 5. 0
 libswscale 0. 7. 1 / 0. 7. 1
 libpostproc 51. 2. 0 / 51. 2. 0
 built on Apr 27 2009 01:52:58, gcc: 4.5.0 20090426 (experimental)
 
 Seems stream 1 codec frame rate differs from container frame rate: 29.97 (30000/
 1001) -> 11.99 (2997/250)
 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '13959_HeartbreakHotel.mov':
 Duration: 00:01:52.61, start: 0.000000, bitrate: 476 kb/s
 Stream #0.0(eng): Audio: qdm2, 22050 Hz, stereo, s16
 Stream #0.1(eng): Video: h263, yuv420p, 352x288 [PAR 12:11 DAR 4:3], 11.99 t
 br, 11.99 tbn, 29.97 tbc
 Stream #0.2(eng): Data: rtp / 0x20707472
 Stream #0.3(eng): Data: rtp / 0x20707472
 Output #0, flv, to '13959_HeartbreakHotel.flv':
 Stream #0.0(eng): Video: flv, yuv420p, 480x320 [PAR 8:9 DAR 4:3], q=2-31, 12
 28 kb/s, 1k tbn, 12 tbc
 Stream #0.1(eng): Audio: libmp3lame, 22050 Hz, stereo, s16, 131 kb/s
 Stream mapping:
 Stream #0.1 -> #0.0
 Stream #0.0 -> #0.1
 Press [q] to stop encoding
 frame= 1350 fps= 27 q=2.0 Lsize= 18777kB time=112.27 bitrate=799.74kbits/s
 
 video:16934kB audio:1754kB global headers:0kB muxing overhead 0.473775%
 
 -----------------------------------------------------------------------------------------------------------------------------------
 PS : THE READERS OF MY POST MIGHT HAVE STARTED WONDERING FFMpeg Commandline Version.
 Please note that Operating System is LINUX, not Windows 7 or Windows XP.Last edited by Bonie81; 27th Aug 2010 at 07:08. 
- 
	thanks for all the help, it's greatly appreciated. 
 
 does anyone have a better suggestion for our conversion software on our website? we currently use .net media handler pro, but I'd like to forward any suggestions for a better program onto upper management. thanks!
- 
	Sorry, if I'm completely ignorant about what you're saying. Our website using media handler to convert any non flv files to flv. Is there a specific program/company that would be best suited for this job, or at least better than .net media handler? Thanks   
Similar Threads
- 
  Problem with MOV > FLV conversionBy sprinke in forum ffmpegX general discussionReplies: 1Last Post: 12th Feb 2011, 22:11
- 
  Expert help reg. *mov conversion pleaseBy ps76 in forum MacReplies: 8Last Post: 16th Dec 2010, 18:06
- 
  .mov to flv conversion completely out of syncBy lilly333 in forum MacReplies: 1Last Post: 23rd Jan 2010, 04:34
- 
  .mov to flv conversion does not show video progress indicatorBy Phranque in forum ffmpegX general discussionReplies: 1Last Post: 20th Sep 2009, 05:58
- 
  Problems with conversion FLV to .mov u others.By djinnverde in forum ffmpegX general discussionReplies: 1Last Post: 30th Sep 2008, 11:32


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote Visit Homepage
				Visit Homepage
			 
 
			
			 
			 
			
