Jump to content


Photo

Exibir Videos No Site Upload E Download De Videos


  • Faça o login para participar
4 replies to this topic

#1 MACUL

MACUL

    Doutor

  • Usuários
  • 770 posts
  • Sexo:Masculino
  • Localidade:SP

Posted 30/10/2007, 10:06

Para quem quer exibir videos em seu site como no YouTube

Existem alguns objetos prontos
http://www.phpmotion.com/



segue abaixo alguns códigos que achei mas não testei se alguém o fizer avise se funciona.

http://forums.asp.ne...55/1468354.aspx







* Upload Vedio files.You can use FileUpload control to do it in asp.net 2.0.The following is sample code.

<asp:FileUpload ID="FileUpload1" runat="server" />

			 FileUpload1.SaveAs(@"c:/upload.mpg");

* Display Vedio in web form

//Read vedio file to ar array

		ar = dr["Content"];
		Response.ContentType="audio/mpeg";
		Response.Clear();
		Response.BufferOutput = true;
		Response.BinaryWrite(ar);
		Response.Flush();
		Response.Close();





* Play .avi format vedio

<object id="video" width="400" height="200" border="0" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">
<param name="ShowDisplay" value="0">
<param name="ShowControls" value="1">
<param name="AutoStart" value="1">
<param name="AutoRewind" value="0">
<param name="PlayCount" value="0">
<param name="Appearance value="0 value=""">
<param name="BorderStyle value="0 value=""">
<param name="MovieWindowHeight" value="240">
<param name="MovieWindowWidth" value="320">
<param name="FileName" value="file:///D|/work/vod/Mbar.avi">
<embed width="400" height="200" border="0" showdisplay="0" showcontrols="1" autostart="1" autorewind="0" playcount="0" moviewindowheight="240" moviewindowwidth="320" filename="file:///D|/work/vod/Mbar.avi" src="Mbar.avi">
</embed>
</object>


* Play .mpg format vedio
<object classid="clsid:05589FA1-C356-11CE-BF01-00AA0055595A" id="ActiveMovie1" width="239" height="250">
<param name="Appearance" value="0">
<param name="AutoStart" value="-1">
<param name="AllowChangeDisplayMode" value="-1">
<param name="AllowHideDisplay" value="0">
<param name="AllowHideControls" value="-1">
<param name="AutoRewind" value="-1">
<param name="Balance" value="0">
<param name="CurrentPosition" value="0">
<param name="DisplayBackColor" value="0">
<param name="DisplayForeColor" value="16777215">
<param name="DisplayMode" value="0">
<param name="Enabled" value="-1">
<param name="EnableContextMenu" value="-1">
<param name="EnablePositionControls" value="-1">
<param name="EnableSelectionControls" value="0">
<param name="EnableTracker" value="-1">
<param name="Filename" value="../../../mpeg/halali.mpg" valuetype="ref">
<param name="FullScreenMode" value="0">
<param name="MovieWindowSize" value="0">
<param name="PlayCount" value="1">
<param name="Rate" value="1">
<param name="SelectionStart" value="-1">
<param name="SelectionEnd" value="-1">
<param name="ShowControls" value="-1">
<param name="ShowDisplay" value="-1">
<param name="ShowPositionControls" value="0">
<param name="ShowTracker" value="-1">
<param name="Volume" value="-480">
</object>


* Play .rm format vedio

<OBJECT ID=video1 CLASSID="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA" HEIGHT=288 WIDTH=352>
<param name="_ExtentX" value="9313">
<param name="_ExtentY" value="7620">
<param name="AUTOSTART" value="0">
<param name="SHUFFLE" value="0">
<param name="PREFETCH" value="0">
<param name="NOLABELS" value="0">
<param name="SRC" value="rtsp://203.207.131.35/vod/dawan-a.rm";>
<param name="CONTROLS" value="ImageWindow">
<param name="CONSOLE" value="Clip1">
<param name="LOOP" value="0">
<param name="NUMLOOP" value="0">
<param name="CENTER" value="0">
<param name="MAINTAINASPECT" value="0">
<param name="BACKGROUNDCOLOR" value="#000000"><embed SRC type="audio/x-pn-realaudio-plugin" CONSOLE="Clip1" CONTROLS="ImageWindow" HEIGHT="288" WIDTH="352" AUTOSTART="false">
</OBJECT>


* Play .wmv format vedio

<object id="NSPlay" width=200 height=180 classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" align="right" hspace="5">
<!-- ASX File Name -->
<param name="AutoRewind" value=1>
<param name="FileName" value="/xxxxxx.wmv">
<!-- Display Controls -->

<param name="ShowControls" value="1">
<!-- Display Position Controls -->

<param name="ShowPositionControls" value="0">
<!-- Display Audio Controls -->

<param name="ShowAudioControls" value="1">
<!-- Display Tracker Controls -->

<param name="ShowTracker" value="0">
<!-- Show Display -->

<param name="ShowDisplay" value="0">
<!-- Display Status Bar -->

<param name="ShowStatusBar" value="0">
<!-- Diplay Go To Bar -->

<param name="ShowGotoBar" value="0">
<!-- Display Controls -->

<param name="ShowCaptioning" value="0">
<!-- Player Autostart -->

<param name="AutoStart" value=1>
<!-- Animation at Start -->

<param name="Volume" value="-2500">
<param name="AnimationAtStart" value="0">
<!-- Transparent at Start -->

<param name="TransparentAtStart" value="0">
<!-- Do not allow a change in display size -->

<param name="AllowChangeDisplaySize" value="0">
<!-- Do not allow scanning -->

<param name="AllowScan" value="0">
<!-- Do not show contect menu on right mouse click -->

<param name="EnableContextMenu" value="0">
<!-- Do not allow playback toggling on mouse click -->
<param name="ClickToPlay" value="0">
</object>


* The simple way to play vedio online sample codes as the following:

<embed src="http://wmt2.aboutmedia.com.tw/Aboutmedia/warner/mtv/naying-021011_01v_120k.wmv";;
autostart="true" loop="true" width="200" height="150" >


Process pStart = new Process();
			pStart.StartInfo.FileName = "C:\\Windows\\notepad.exe"; //start vedio player
			pStart.StartInfo.Arguments = "d:\\1.txt";   //You can put vedio files here
			pStart.Start();

*************** M ** A ** C ** U ** L ***************

*************************************************

#2 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 29/11/2017, 08:22

Buy Combivent Without Prescription Cialis Sans Ordonnance Forum Viagra Kaufen Gute Frage cialis price Acheter Viagra Cialis Levitra Viagra Effet Positif Usa Viagra Prices
Amoxicillin And Std'S Levitra Efectos Adversos Acquistare Cialis Viagra cialis Support Generique Propecia Canada

#3 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 30/11/2017, 07:08

Comprar Cialis Sevilla Provera 5mg In Australia Kamagra Naturale viagra Adult Dosing Amoxicillin Cialis Fegato
Acheter Misoprostol Quebec Best Buy Amatriptylene viagra Where To Mail Order Cialis From India Propecia Consumo Cialis Longue Duree

#4 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 30/11/2017, 14:06

Buy Dapoxetine Online No Prescription Comprar Cialis Internet Seguro Viagra Cialis Farmaci viagra prescription Propecia En Farmacias Comprar

#5 JeffMalm

JeffMalm

    Super Veterano

  • Usuários
  • 12254 posts
  • Sexo:Feminino
  • Localidade:Mount Carey

Posted 20/12/2022, 23:42

Plasma concentrations rose readily after oral doses, achieving and maintaining appropriately high levels over 24 h propecia for sale Hello, I m 46 and currently 17 weeks
Response to Public Comment real cialis no generic Then androstenedione crosses the basal membrane into the surrounding granulosa cells, where it is converted to estrone or estradiol, either immediately or through testosterone
kemadrin celebrex for sciatica pain Perhaps the strongest is the performance of Percy Bysshe Shelley s The Masque of Anarchy, by Bolton actor Maxine Peake, as it is being recited yards from where the horrors that inspired it took place buy stromectol for dogs Cutaneous absorption of tretinoin in 0
does insurance pay for viagra Omiganan Topical Gel
Contralateral MTX showed small foci of DCIS long term use of clomid in males Hopefully, the research catches up since 1 3rd of women taking hormone replacement use bioidenticals
American Chemical Society ACS; 2015; 63 2432 2441 10 finasteride 1 mg no prescription needed Primitive stellate cells
You should know yours viagra pharmacy Zhao Y, Laws MJ, Guillen VS, Ziegler Y, Min J, et al
generic cialis online europe View Article PubMed NCBI Google Scholar 80
Did you know that there are alot of common antidepressents that stop or alter the way tamoxifen works cheap viagra levitra cialis Absence of suspicious or metastatic disease on imaging
Neither antioestrogen had any effects on colony formation by the ER negative Hs578T cell line ivermectin over the counter Trajectories of alcohol consumption during life and the risk of developing breast cancer
cialis minoxidil y prolactina alta Professor Matt Field, adolescent addiction psychologist at University of Liverpool, added Adolescents are particularly vulnerable to developing addictions and that s because of how their brains are developing levitra generique Itching, anabolic steroids legal or illegal
Cancer 50 423 434 generic cialis online Cultural Center HCJ NC meeting Our Path to a National Improved Medicare for All featuring Dr
There are certain conditions like fallopian tube disorders, endometriosis or severe sperm impairment where IUI won t work well where to buy stromectol in canada
ivermectin for humans for sale Postvoid residual testing measures the volume of urine left in the bladder immediately after voiding
lasix not working for edema Mice that developed tumors were euthanized at the indicated times, when tumors ulcerated or reached a maximum diameter of 20 mm, or when mice showed any signs of discomfort
18F Labeled tamoxifen analogue 18F FTX was prepared in 30 40 yield and 131I labeled tamoxifen analogue 131I ITX was prepared in 20 25 yield precio del levitra In treated patients, complete heart block generally resolves within 1 week, and lesser conduction disturbances resolve within 6 weeks




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq