Hi, 
please I need some help, I am not able to watch my DV Video files correctly in my Samsung Tv.
I can see them through transcoding, but they are in 4:3 aspect ratio, instead of 16:9, like the original file.
Thank you
			
			
									
						
										
						DV Video files
Re: DV Video files
Hi, 
			
			
									
						
										
						Perhaps using transcoding profile "Movies-TsMuxer", which does not change the video. Try to choose a transcoding profile "Movies (primary)"ignaciobel wrote: please I need some help, I am not able to watch my DV Video files correctly in my Samsung Tv.
I can see them through transcoding, but they are in 4:3 aspect ratio, instead of 16:9, like the original file.
- 
				ignaciobel
- Posts: 8
- Joined: Thu Sep 09, 2010 11:43 am
Re: DV Video files
Hi, 
I tried all profiles, the best results (quality) are with profile "movies (primary)" in deinterlaced mode as shown in this topic:
http://www.wildmediaserver.com/forum/vi ... hilit=dvsd, but always in 4:3 (all profiles that worked), it seems like it does not recognize the 16:9 aspect ratio. Other videos from the same camera (same properties) but in 4:3 are shown correctly. Also VLC plays the file in 4:3, but Windows does it right. (running windows7)
Thank you
			
			
									
						
										
						I tried all profiles, the best results (quality) are with profile "movies (primary)" in deinterlaced mode as shown in this topic:
http://www.wildmediaserver.com/forum/vi ... hilit=dvsd, but always in 4:3 (all profiles that worked), it seems like it does not recognize the 16:9 aspect ratio. Other videos from the same camera (same properties) but in 4:3 are shown correctly. Also VLC plays the file in 4:3, but Windows does it right. (running windows7)
Thank you
Re: DV Video files
Hi,
Settings - Transcoder - Profiles - "Movies (additional)" - Edit -
find 
replace on
			
			
									
						
										
						You can use the forced change of frame size in the transcoding profile "Movies (additional)"ignaciobel wrote: I tried all profiles, the best results (quality) are with profile "movies (primary)" in deinterlaced mode as shown in this topic:
http://www.wildmediaserver.com/forum/vi ... hilit=dvsd, but always in 4:3 (all profiles that worked), it seems like it does not recognize the 16:9 aspect ratio. Other videos from the same camera (same properties) but in 4:3 are shown correctly. Also VLC plays the file in 4:3, but Windows does it right. (running windows7)
Settings - Transcoder - Profiles - "Movies (additional)" - Edit -
find
Code: Select all
   if (iWidth > 0) and (iHeight > 0) then begin
      if WmsTranscodingFrameParams(iWidth, iHeight, cfgTranscodingScreenFormat,
                         iPadLeft, iPadTop, iPadRight, iPadBottom) then begin
        iFrameWidth  := iWidth;
        iFrameHeight := iHeight;
        if (iPadLeft > 0) or (iPadRight > 0) or (iPadTop > 0) or (iPadBottom > 0) then begin
          sParams := sParams + Format(' -padleft %d -padright %d -padtop %d -padbottom %d -padcolor %s',
                      [iPadLeft, iPadRight, iPadTop, iPadBottom, WmsConvertColor(cfgTranscodingPadColor)]);
          if cfgTranscodingFrameExists then
            sParams := sParams + cfgTranscodingFrameParams;
          Inc(iFrameWidth,  iPadLeft + iPadRight);
          Inc(iFrameHeight, iPadTop + iPadBottom);
        end
      end else begin
        iFrameWidth  := iWidth;
        iFrameHeight := iHeight;
      end;
replace on
Code: Select all
    if (iWidth > 0) and (iHeight > 0) then begin
      iFrameWidth := 720; iFrameHeight := 406;
      iWidth      := 720; iHeight := 406;    
- 
				ignaciobel
- Posts: 8
- Joined: Thu Sep 09, 2010 11:43 am
Re: DV Video files
Ok, it works now,
but how do I get the video deinterlaced now, please?
One more thing, Is there a way to get several videos in the same folder in transcode mode?, instead of one folder for each clip.
Thank you very much.
			
			
									
						
										
						but how do I get the video deinterlaced now, please?
One more thing, Is there a way to get several videos in the same folder in transcode mode?, instead of one folder for each clip.
Thank you very much.
Re: DV Video files
ignaciobel wrote:Ok, it works now,
but how do I get the video deinterlaced now, please?
One more thing, Is there a way to get several videos in the same folder in transcode mode?, instead of one folder for each clip.
Code: Select all
  csFFMpegVideoParams = ' -f %s -vcodec %s -b %d%s -aspect %s -copyts -pix_fmt yuv420p -deinterlace';
- 
				ignaciobel
- Posts: 8
- Joined: Thu Sep 09, 2010 11:43 am
Re: DV Video files
Great, I am just getting my license.
 
thank you very much
			
			
									
						
										
						thank you very much

 
                                        