• Apfeltalk ändert einen Teil seiner Allgemeinen Geschäftsbedingungen (AGB), das Löschen von Useraccounts betreffend.
    Näheres könnt Ihr hier nachlesen: AGB-Änderung
  • Viele hassen ihn, manche schwören auf ihn, wir aber möchten unbedingt sehen, welche Bilder Ihr vor Eurem geistigen Auge bzw. vor der Linse Eures iPhone oder iPad sehen könnt, wenn Ihr dieses Wort hört oder lest. Macht mit und beteiligt Euch an unserem Frühjahrsputz ---> Klick

Wie kann man ein Video direkt in ein Blog einbauen, wenn man nur den direktlink hat?

maurice16

Gloster
Registriert
05.11.06
Beiträge
65
Hi Leute,

ich habe mir gestern dieses Video ( http://storage.freenet.de/files/get/9131659/Daniel_720.mpg?myhost=1 ) bei Freenet hochgeladen, und würde es jetzt gerne direkt in meine Homepage einbauen, also so das man später den Link nicht klicken muss um zum Video zu gelangen, sondern der Quicktime Player soll direkt in meinem Blog abgebildet werden.

Ich habe allerdings nur diesen Link, und weis jetzt nicht wie ich das Video direkr einbauen kann.


Würd mich als Mac Einsteiger echt über Antworten freuen.


MFG



Maurice 16
 

mschoening

Gelbe Schleswiger Reinette
Registriert
21.02.07
Beiträge
1.764
<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="sample.mov">
<param name="qtsrc" value="rtsp://realmedia.uic.edu/itl/ecampb5/demo_broad.mov">
<param name="autoplay" value="true">
<param name="loop" value="false">
<param name="controller" value="true">
<embed src="sample.mov" qtsrc="rtsp://realmedia.uic.edu/itl/ecampb5/demo_broad.mov" width="320" height="256" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>
</object>

Du musst die Values jetzt einfach auf deinen Film anpassen...wenns nicht klappt melde dich wieder.
 

mschoening

Gelbe Schleswiger Reinette
Registriert
21.02.07
Beiträge
1.764
Vielleicht noch eine kurze Erklärung zu den ganzen Values:

<object ...>... </object> — An ActiveX control is being embedded here, to enable playback by Internet Explorer. Requires CLASSID, height, width, and src parameters.

<embed ...></embed> — Here a Netscape plugin is being called. As this is inside the object tag, Internet Explorer will safely ignore it. IE 5.5 or newer will ignore it anywhere anyway, but earlier versions would display two copies, had you put this outside the object tag. Netscape, Mozilla, Opera, etc. will all ignore the object tag, and use only the embed tag, which does not require quoting the arguments, unless they contain special characters such as spaces. Note: single tag, doesn't really need to be closed.

CLASSID="..." — This specifies what filetype will be loaded here, and accordingly what application should handle it. This is the same code used in the Windows registry. The value must be copied literally.

width="...", height="..." — You need to tell the browser what area to reserve for the display of this object. You should specify the actual size of the object, or you can get weird display problems. For Quicktime movies, the controller is 16 pixels high, which you add to the size of your movie clip (normally 320x240 pixels).

CODEBASE="..." — This object-parameter tells IE where to get the ActiveX control, if the user doesn't have it installed in his browser yet. Installs it on the fly, if the user permits it.

pluginspage="..." — Tells Netscape-compatible browsers where to take the user, if he doesn't have the right plugin installed, and chooses the "Get Plugin" option.

<param name="..." value="..."> — All parameters could be included in the main object tag, but for readability it is recommended to supply additional parameters via these param tags and their name-value pairs. Quoting the arguments is necessary!

src="..." — This is the URL to the source file for this object, under normal circumstances, i.e. for most types of plugins/ActiveX controls. For Quicktime, things are a little different. For the embed part, the file extension here determines the MIMEtype used by the webserver, and hence tells Netscape-compatible browsers what plugin to launch (the Quicktime player). Thus you need a little file (can be empty) with the .mov extension on your webserver (same directory as this webpage) that you reference here. The browser downloads this file, starts the Quicktime player, and passes the embed-info on to it. The player looks only at the qtsrc parameter to load the actual movie clip. For IE (i.e. in the object tag), this parameter is ignored, if there is a qtsrc parameter at all. Otherwise the src parameter will be used by IE to find the movie clip.

qtsrc="..." — This is the URL to the source file for the Quicktime player. Uses the rtsp:protocol for streaming it from a streaming server such as the ACCC Realserver, or the http:protocol for downloading it from a webserver.

autoplay="true"/"false" — Should the movie start playing automatically? Recommended: true (for single movies)

loop="true"/"false"— Should the movie play once or continuously? Recommended: false

controller="true"/"false" — Should the user have playback controls that allow him to stop, pause, fast forward, or mute the movie? Recommended: true

There are additional parameters for the Quicktime plugin. For more information, please visit the Apple Quicktime site, which has lots of documentation and samples.
 

Sigur

Adams Parmäne
Registriert
10.07.06
Beiträge
1.301
was hast du für einen blog?
bei wordpress kann man ganz einfach videos einbinden.
 

mschoening

Gelbe Schleswiger Reinette
Registriert
21.02.07
Beiträge
1.764
Hi maurice16,
nein Value=Wert auf English, du musst alles auf deinen Film anpassen...die Höhe, die Breite (height, width), dann wie du ihn in dem Code nennen willst, wo er sich befindet (source), etc...es ist alles in der Erklärung-Antwort erklärt. Leider nur auf englisch. Ich habe leider keine Zeit im Moment. Ich kann dir nur anbieten, dass ich dir den Code schreibe. Dazu brauche ich aber Information:

Den Link zu deinem QuicktimeMovie, die Höhe u. Breite des Films, ob die User den Film stoppen, vorspulen und leise stellen dürfen und ob er automatisch anfangen soll.