JDownloader Community - Appwork GmbH
 

Notices

Reply
 
Thread Tools Display Modes
  #681  
Old 26.01.2014, 13:06
coalado's Avatar
coalado coalado is offline
JD Manager
 
Join Date: Feb 2009
Posts: 1,980
Default

The 503 happend during the log upload. It is not related in any way to youtube.



I cannot reproduce one of your problems. every link you provided works pretty fine for me.


In lucia's log I found some youtube server errors. This should work after a few minutes. If you still have problems, please visit me in the supportchat for a teamviewer session.
__________________
Reply With Quote
  #682  
Old 26.01.2014, 15:37
lucia lucia is offline
Fibre Channel User
 
Join Date: Nov 2010
Location: Earth
Posts: 120
Default

Today, I do not have any issues...
Strange...

Thank you very much...
Reply With Quote
  #683  
Old 26.01.2014, 18:16
travestree travestree is offline
Giga Loader
 
Join Date: Oct 2013
Posts: 96
Default

Quote:
Originally Posted by coalado View Post
The 503 happend during the log upload. It is not related in any way to youtube.



I cannot reproduce one of your problems. every link you provided works pretty fine for me.


In lucia's log I found some youtube server errors. This should work after a few minutes. If you still have problems, please visit me in the supportchat for a teamviewer session.
ok, yea i think i figured it out, because of the new plugin system i had set it to grab just 480p on the assumption i could just individually pick out certain videos to raise up in quality as needed, but some videos don't have a 480p and only 360p, so they wouldn't show up.

I've still had link grabber go on forever and stuff.
26.01.14 06.47.19to26.01.14 06.47.18 jdlog://8235234130931/
and a couple download failures with the "restart link" issue
26.01.14 07.53.49to26.01.14 07.35.54 jdlog://6235234130931/
Reply With Quote
  #684  
Old 27.01.2014, 13:15
maynak00's Avatar
maynak00 maynak00 is offline
JD Legend
 
Join Date: May 2009
Location: Turkey
Posts: 2,051
Default

-please add exact time support for filenames (old: 08.11.2013_12-00-00;current:year,month,day for ex. January 5, 2014).I want: (year,month,day,hour,minute,second)
ex. link: **External links are only visible to Support Staff****External links are only visible to Support Staff**
my setting: *channelname*(*user*) - *videoname* (*variant* - *quality*) - *videoid* - (*date[YYYY/MM/DD]*).*ext*
filename grabbed: FoxesVEVO(FoxesVEVO) - Foxes - Let Go for Tonight (MP4_DASH_1080_AAC128 - 1080p) - Pecj5GGjQi8 - January 5, 2014.mp4
gdata url: **External links are only visible to Support Staff****External links are only visible to Support Staff**
<published>2014-01-06T00:01:01.000Z</published>
good options:
2014-01-06T00-01-01.000Z
2014-01-06_00-01-01
06.01.2014_00-01-01

-please add dash (.m4a) support.current only .aac (custom option please)
-please add uppercase,lovercase etc. type filenaming support (not important but good)
-GeneralSettings: Use Original Last Modified (not working for dash enabled videos)

-channel name and user are different
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**

-please check for more info:
http://board.jdownloader.org/showpos...&postcount=575
http://board.jdownloader.org/showpos...&postcount=484
http://board.jdownloader.org/showpos...&postcount=441
__________________
JD->:thumbup:
Spoiler:
Java:
**External links are only visible to Support Staff**Official
**External links are only visible to Support Staff**x86&x64
**External links are only visible to Support Staff**JavaRa
JDownloader:
**External links are only visible to Support Staff**JD-ZIP
JD-Installer
JD-Nightly
JD2-x86
JD2-x64
JD2 noadware:
http://board.jdownloader.org/showthread.php?t=54725
http://jdownloader.org/jdownloader2
JD2-upd only
JD Dev., Translator: http://svn.jdownloader.org/users/271
speedtest.net/result/3156325665.png
speedtest.net/result/2332385983.png

Last edited by maynak00; 27.01.2014 at 13:27.
Reply With Quote
  #685  
Old 27.01.2014, 15:08
TimDow TimDow is offline
Wind Gust
 
Join Date: May 2013
Posts: 41
Default

Can you please explain how I can get back all file resolution download variants from YT in JD2?
Like I used to have before, and how I still have in JD1.

EDIT: found in Settings-Plugins-YT Plugin

Last edited by TimDow; 27.01.2014 at 15:12.
Reply With Quote
  #686  
Old 27.01.2014, 15:54
coalado's Avatar
coalado coalado is offline
JD Manager
 
Join Date: Feb 2009
Posts: 1,980
Default

Accurate Date: DONE (use *date_time*)
.m4a Support
Youtube does not provide any m4a files. M4a (Mpeg Audio) is just a container for aac files.

You can make the youtube plugin to call external converters (SUPER, FFMpeg, Mp4Box,....) after the download. All you need is the correct commandline call:

You can add custom variants in the advanced youtube settings.
This example would call c:/PathToConverter.exe -switch1 PathToInputFile.mp4 -switch2 Outputfile.m4a
Code:
[ {
  "uniqueID" : "aactom4a",
  "typeID" : "AAC_128_m4a",
  "downloadType" : "DASH_AUDIO",
  "group" : "AUDIO",
  "audioTag" : "DASH_AUDIO_128K_AAC",
  "videoTag" : null,
  "qualityRating" : -1.0,
  "name" : "128kbit/s M4A",
  "nameTag" : "128m4a",
  "extension" : "m4a",
  "binary" : "c:/PathToConverter.exe",
  "parameters" : [ "-switch1", ..., "%input", "-switch2",..., "%output" ]
}]
uniqueID: Anything unique! Just be creative.
typeID: define the type String Just be creative.
downloadType: DASH_AUDIO, DASH_VIDEO, VIDEO, IMAGE, SUBTITLES,
group: AUDIO,VIDEO,VIDEO_3D,IMAGE,SUBTITLES
audioTag: see Tags Spoiler
videoTag: see Tags Spoiler
qualityRating: -1.0 for automode
name: The Variants Name. Just be creative.
nameTag: The Tag used in the filename
extension: fileextension
binary: path to your converter
parameters: the commandline parameters. Use %input for the input path and %output as output path


Tags:
Spoiler:
SUBTITLE
IMAGE_MAX
IMAGE_HQ
IMAGE_MQ
IMAGE_LQ
DASH_AUDIO_128K_AAC
DASH_AUDIO_128K_WEBM
DASH_AUDIO_192K_WEBM
DASH_AUDIO_256K_AAC
DASH_AUDIO_48K_AAC
DASH_VIDEO_1080P_H264
DASH_VIDEO_1440P_H264
DASH_VIDEO_144P_H264
DASH_VIDEO_240P_H264
DASH_VIDEO_360P_H264
DASH_VIDEO_480P_H264
DASH_VIDEO_720P_H264
DASH_VIDEO_ORIGINAL_H264
DASH_WEBM_VIDEO_1080P_VP9
DASH_WEBM_VIDEO_720P_VP9
DASH_WEBM_VIDEO_480P_VP9_3
DASH_WEBM_VIDEO_480P_VP9_2
DASH_WEBM_VIDEO_480P_VP9
DASH_WEBM_VIDEO_360P_VP9
DASH_WEBM_VIDEO_240P_VP9
FLV_VIDEO_360P_H264_AUDIO_AAC
FLV_VIDEO_480P_H264_AUDIO_AAC
FLV_VIDEO_HIGH_240P_H263_AUDIO_MP3
FLV_VIDEO_LOW_240P_H263_AUDIO_MP3
MP4_VIDEO_1080P_H264_AUDIO_AAC
MP4_VIDEO_240P_H264_AUDIO_AAC_3D
MP4_VIDEO_360P_H264_AUDIO_AAC
MP4_VIDEO_360P_H264_AUDIO_AAC_3D
MP4_VIDEO_520P_H264_AUDIO_AAC_3D
MP4_VIDEO_720P_H264_AUDIO_AAC
MP4_VIDEO_720P_H264_AUDIO_AAC_3D
MP4_VIDEO_AUDIO_ORIGINAL
THREEGP_VIDEO_144P_H264_AUDIO_AAC
THREEGP_VIDEO_240P_H263_AUDIO_AAC
THREEGP_VIDEO_240P_H264_AUDIO_AAC
WEBM_VIDEO_1080P_VP8_AUDIO_VORBIS
WEBM_VIDEO_360P_VP8_AUDIO_128K_VORBIS_3D
WEBM_VIDEO_360P_VP8_AUDIO_192K_VORBIS_3D
WEBM_VIDEO_360P_VP8_AUDIO_VORBIS
WEBM_VIDEO_480P_VP8_AUDIO_VORBIS
WEBM_VIDEO_720P_VP8_AUDIO_192K_VORBIS_3D
WEBM_VIDEO_720P_VP8_AUDIO_VORBIS


-please add uppercase,lovercase etc. type filenaming support (not important but good)
Please explain. No Idea what you mean


-GeneralSettings: Use Original Last Modified (not working for dash enabled videos)
ok

-channel name and user are different
Please explain
__________________
__________________
Reply With Quote
  #687  
Old 28.01.2014, 11:50
llz
Guest
 
Posts: n/a
Default

once again youtube plugin grabs audio links only.
jd2 is updated, i checked the plugin settings but the old variants option is no more there, i have all the possible media types selected.

plugin settings screenshots:
http://i44.tinypic.com/2h4aiig.jpg
http://i39.tinypic.com/slk478.jpg
http://i39.tinypic.com/2iuuvx4.jpg

example link: **External links are only visible to Support Staff****External links are only visible to Support Staff**

log: 28.01.14 10.35.39to28.01.14 10.36.51 jdlog://8396234130931/
Reply With Quote
  #688  
Old 28.01.2014, 18:45
Randy Andy Randy Andy is offline
JD Fan
 
Join Date: Dec 2009
Posts: 73
Default

PlugIn works good, but i don't understand how to get the results as in the old version.
Please can comebody help me?

I want to download the best video quality till the 1080 solution of every link i put in.
In the PlugIn-Settings i choose 1080,720,480,360 the result in the LinkGrabbe is that i get 1-4 possible download links, but i only want, that it grabs the best available solution of the video - How did i get this automaticly?

At the moment i delete the poorer solutions by hand, but the method in the old version was much better.

Yes, i noticed the rightclick-mouse options in LinkGrabber, but if i choose 'Set Variant' and 'Best Video Availabe' the only result is, that the Links checked again for file size, but in the Linklist nothing changes.

Thanks for help...
Reply With Quote
  #689  
Old 28.01.2014, 19:12
Lram32's Avatar
Lram32 Lram32 is offline
Spanish Supporter
 
Join Date: Jul 2012
Location: Dark side of the moon
Posts: 9,905
Default

Hi,

If you only want the best, just use the default settings, you haven't to change anything. With default settings JD2 returns all best quality for all variants (audio, video, etc...)

If you only want the best for videos, only leave enable the option "create a link for the best video quality".
__________________
» Setup JD2 / Instalador de JD2 «
Spoiler:

Installer for Windows XP/Vista/Seven/Eight
|| JD2 x86 - x64 (Beta) ||

Installer for Mac
|| JD2 (Beta) ||

Installers for Linux
|| JD2 (Beta) x86 || <---> || JD2 (Beta) x64 ||

How to Create a Log
-» Click Here «-


¿Cómo crear un registro?
-» Click Aquí «-


Support Chat / Chat de Soporte
-» Click Here / Click Aquí «-


Reply With Quote
  #690  
Old 29.01.2014, 15:46
llz
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by llz View Post
once again youtube plugin grabs audio links only.
jd2 is updated, i checked the plugin settings but the old variants option is no more there, i have all the possible media types selected.

plugin settings screenshots:
**External links are only visible to Support Staff**...
**External links are only visible to Support Staff**...
**External links are only visible to Support Staff**...

example link: **External links are only visible to Support Staff**...

log: 28.01.14 10.35.39to28.01.14 10.36.51 jdlog://8396234130931/
can anyone help me?
Reply With Quote
  #691  
Old 29.01.2014, 16:41
coalado's Avatar
coalado coalado is offline
JD Manager
 
Join Date: Feb 2009
Posts: 1,980
Default

llz: fixed. will get live in 15 minutes.

There was a bug with Java 1.6
__________________
Reply With Quote
  #692  
Old 29.01.2014, 23:39
Randy Andy Randy Andy is offline
JD Fan
 
Join Date: Dec 2009
Posts: 73
Default

Quote:
Originally Posted by Lram32 View Post
Hi,

If you only want the best, just use the default settings, you haven't to change anything. With default settings JD2 returns all best quality for all variants (audio, video, etc...)

If you only want the best for videos, only leave enable the option "create a link for the best video quality".
Thanks for your reply.

Do you mean the settings under "Default Variants" in the YT-PlugIns-Settings with "create a link for the best video quality" ?
In my JD there is every option "create a link for the best video quality/Image/Audio Quality/etc" selected and i can't change there anything because it's greyed out.

Sorry, for the stupid question, but i don't get through the new settings
Reply With Quote
  #693  
Old 29.01.2014, 23:43
Lram32's Avatar
Lram32 Lram32 is offline
Spanish Supporter
 
Join Date: Jul 2012
Location: Dark side of the moon
Posts: 9,905
Default

Hi,

Please post the screenshots of the youtube plugin settings.
__________________
» Setup JD2 / Instalador de JD2 «
Spoiler:

Installer for Windows XP/Vista/Seven/Eight
|| JD2 x86 - x64 (Beta) ||

Installer for Mac
|| JD2 (Beta) ||

Installers for Linux
|| JD2 (Beta) x86 || <---> || JD2 (Beta) x64 ||

How to Create a Log
-» Click Here «-


¿Cómo crear un registro?
-» Click Aquí «-


Support Chat / Chat de Soporte
-» Click Here / Click Aquí «-


Reply With Quote
  #694  
Old 30.01.2014, 02:55
raremediaum
Guest
 
Posts: n/a
Default No progress with broken links

I haven't really had this problem before, but every now and then after ten downloads of small mp3s a few downloads stop download. Their active task switches between "starting" and "downloading", but there is no progress. They try to reconnect for a bit then freeze the whole program and I have to force quit the program. I can disable the broken links, but this is happening quite frequently. Any suggestions?
Reply With Quote
  #695  
Old 30.01.2014, 10:17
raztoki's Avatar
raztoki raztoki is offline
English Supporter
 
Join Date: Apr 2010
Location: Australia
Posts: 17,611
Default

can you post your logs please (click image for guide.)

__________________
raztoki @ jDownloader reporter/developer
http://svn.jdownloader.org/users/170

Don't fight the system, use it to your advantage. :]
Reply With Quote
  #696  
Old 30.01.2014, 11:34
raremediaum
Guest
 
Posts: n/a
Default

30.01.14 01.34.01to30.01.14 01.32.34 jdlog://3188234130931/
Reply With Quote
  #697  
Old 30.01.2014, 15:54
maynak00's Avatar
maynak00 maynak00 is offline
JD Legend
 
Join Date: May 2009
Location: Turkey
Posts: 2,051
Default

@coalado, thank you for your detailed answer.
please try for m4a. **External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff** (click more>Audio MP4 128 kbps>if completed.check with mediainfo>.m4a file.format:dash)


-channel name and user are different
sorry wrong question title.I want channel ID UC2-BeLxzUBSs0uSrmzWhJuQ or 2-BeLxzUBSs0uSrmzWhJuQ and googlePlusUserId
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**
**External links are only visible to Support Staff****External links are only visible to Support Staff**

20th Century Fox(FoxMovies) - The Fault In Our Stars _ Official Trailer [HD] _ 20th Century FOX (MP4_DASH_1080_AAC128 - 1080p) - 9ItBvH5J6ss (2014_01_29 07_45).mp4
*channelname*(*user*) - *videoname* (*variant* - *quality*) - *videoid* (*date_time[YYYY/MM/DD hh:mm]*).*ext*
<a dir="ltr" href="/user/FoxMovies" class="spf-link branded-page-header-title-link yt-uix-sessionlink" title="20th Century Fox" data-sessionlink="ei=rFbqUvCDC4OaiQbF8oDQBg">20th Century Fox</a>
href='**External links are only visible to Support Staff**/><link rel='self' type='application/atom+xml' href='**External links are only visible to Support Staff**/><author><name>20th Century Fox</name><uri>**External links are only visible to Support Staff** <yt:googlePlusUserId>114139495198226847857</yt:googlePlusUserId>
<yt:username>foxmovies</yt:username>
__________________
JD->:thumbup:
Spoiler:
Java:
**External links are only visible to Support Staff**Official
**External links are only visible to Support Staff**x86&x64
**External links are only visible to Support Staff**JavaRa
JDownloader:
**External links are only visible to Support Staff**JD-ZIP
JD-Installer
JD-Nightly
JD2-x86
JD2-x64
JD2 noadware:
http://board.jdownloader.org/showthread.php?t=54725
http://jdownloader.org/jdownloader2
JD2-upd only
JD Dev., Translator: http://svn.jdownloader.org/users/271
speedtest.net/result/3156325665.png
speedtest.net/result/2332385983.png
Reply With Quote
  #698  
Old 30.01.2014, 16:33
coalado's Avatar
coalado coalado is offline
JD Manager
 
Join Date: Feb 2009
Posts: 1,980
Default

Maynak00:

The m4a Stream IS the AAC is stream. We just do not offer it in a dash container (like ssyoutube.com does). MOst audioplayers prefer aac over dash/m4a. Windows Mediaplayer, for instance, cannot play your m4a file.

M4a/dash is the raw audiostream youtube provides. I see no reason why we should offer this as a variant.

Channel ID: you already have *channel_id* I will add *googleplus_id*
__________________
Reply With Quote
  #699  
Old 30.01.2014, 19:31
llz
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by coalado View Post
llz: fixed. will get live in 15 minutes.

There was a bug with Java 1.6
thank you, it works fine now
i still can't install the ffmpeg library but it's a step forward anyway
Reply With Quote
  #700  
Old 31.01.2014, 00:08
zzuzu zzuzu is offline
Baby Loader
 
Join Date: Jan 2012
Posts: 8
Default

Hello, I hope you can help me...

when jdownloader is downloading files from youtube, it works fine at first. But then... it starts to use whole CPU while downloading will stop. Also... jdownloader doesn't react so I can't even close it. I have to use ctrl+alt+del to close. I have Win 7 Ultimate 64-bit and Java 1.7 (newest one).

Thank you in advance for your help
Reply With Quote
  #701  
Old 31.01.2014, 00:18
Lram32's Avatar
Lram32 Lram32 is offline
Spanish Supporter
 
Join Date: Jul 2012
Location: Dark side of the moon
Posts: 9,905
Default

Hi,

Please compress the folder logs, and send the compressed file at the EMail support@jdownloader.org, make a description of your problem, and include in your EMail information of the java version that you have.
__________________
» Setup JD2 / Instalador de JD2 «
Spoiler:

Installer for Windows XP/Vista/Seven/Eight
|| JD2 x86 - x64 (Beta) ||

Installer for Mac
|| JD2 (Beta) ||

Installers for Linux
|| JD2 (Beta) x86 || <---> || JD2 (Beta) x64 ||

How to Create a Log
-» Click Here «-


¿Cómo crear un registro?
-» Click Aquí «-


Support Chat / Chat de Soporte
-» Click Here / Click Aquí «-


Reply With Quote
  #702  
Old 01.02.2014, 03:42
Lram32's Avatar
Lram32 Lram32 is offline
Spanish Supporter
 
Join Date: Jul 2012
Location: Dark side of the moon
Posts: 9,905
Default

@raremediaum merged youtube threads.
Please try with less chunks per download.
__________________
» Setup JD2 / Instalador de JD2 «
Spoiler:

Installer for Windows XP/Vista/Seven/Eight
|| JD2 x86 - x64 (Beta) ||

Installer for Mac
|| JD2 (Beta) ||

Installers for Linux
|| JD2 (Beta) x86 || <---> || JD2 (Beta) x64 ||

How to Create a Log
-» Click Here «-


¿Cómo crear un registro?
-» Click Aquí «-


Support Chat / Chat de Soporte
-» Click Here / Click Aquí «-


Reply With Quote
  #703  
Old 01.02.2014, 20:26
marcnn
Guest
 
Posts: n/a
Default

JD can't find the videos for me: 01.02.14 19.24.04to01.02.14 19.24.02 jdlog://8911334130931/
Shows only audio.
Reply With Quote
  #704  
Old 01.02.2014, 22:35
Lram32's Avatar
Lram32 Lram32 is offline
Spanish Supporter
 
Join Date: Jul 2012
Location: Dark side of the moon
Posts: 9,905
Default

Hi

Works fine for me. Please provide some example links and the screenshots of the youtube plugin settings.
__________________
» Setup JD2 / Instalador de JD2 «
Spoiler:

Installer for Windows XP/Vista/Seven/Eight
|| JD2 x86 - x64 (Beta) ||

Installer for Mac
|| JD2 (Beta) ||

Installers for Linux
|| JD2 (Beta) x86 || <---> || JD2 (Beta) x64 ||

How to Create a Log
-» Click Here «-


¿Cómo crear un registro?
-» Click Aquí «-


Support Chat / Chat de Soporte
-» Click Here / Click Aquí «-


Reply With Quote
  #705  
Old 02.02.2014, 01:44
testtest12 testtest12 is offline
Super Loader
 
Join Date: Dec 2013
Posts: 26
Default

480p downloads get this error: Please restart plugin
restarted but result is same.
Reply With Quote
  #706  
Old 02.02.2014, 03:52
Randy Andy Randy Andy is offline
JD Fan
 
Join Date: Dec 2009
Posts: 73
Default

Quote:
Originally Posted by Lram32 View Post
Hi,

Please post the screenshots of the youtube plugin settings.
Thanks for you support so far...

Here is a screenshot:
Reply With Quote
  #707  
Old 02.02.2014, 08:35
Makaveli84
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by testtest12 View Post
480p downloads get this error: Please restart plugin
restarted but result is same.
Yes, same for me.
480p was working fine until I applied/installed the latest plugin updates. Looks like a regression with the YT plugin...
Reply With Quote
  #708  
Old 02.02.2014, 09:12
Gooberslot
Guest
 
Posts: n/a
Default

I'm using Linux and jdownloader is not working with Youtube. When I copy a link the little notification box pops up but jdownloader never finds any files to download. It works properly under Windows and other sites work fine under Linux, it's just Youtube that seems to be giving me problems.

One big difference between my Windows and Linux installation is that Windows uses the Oracle Java and Linux uses the Openjdk java. Could that be the problem? Still, I don't know why it would only affect Youtube.
Reply With Quote
  #709  
Old 02.02.2014, 09:41
Makaveli84
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by testtest12 View Post
480p downloads get this error: Please restart plugin
restarted but result is same.
Same here.. 480p was fine, but seems to have stopped working after I applied the latest plugins update. Now I get a message saying:
"An Error occured! (youtube.com)"
"Try restarting this link (plugin outdated?)"


Looks like a YT plugin regression...
Reply With Quote
  #710  
Old 02.02.2014, 10:53
Derp Derp is offline
JD VIP
 
Join Date: Oct 2011
Posts: 336
Default

Quote:
Originally Posted by testtest12 View Post
480p downloads get this error: Please restart plugin
restarted but result is same.
Same is happening when downloading any other DASH variant, i.e. **External links are only visible to Support Staff****External links are only visible to Support Staff**

Last edited by Derp; 02.02.2014 at 10:56.
Reply With Quote
  #711  
Old 02.02.2014, 11:12
maynak00's Avatar
maynak00 maynak00 is offline
JD Legend
 
Join Date: May 2009
Location: Turkey
Posts: 2,051
Default

An Error occured! (youtube.com)
Try restarting this link (plugin outdated?) (fresh added links and up to date JD2,no proxy,4 chunks,1 file dl,no plugin error in youtube.com.log.0 file)

EDIT:restart&readding same error.
__________________
JD->:thumbup:
Spoiler:
Java:
**External links are only visible to Support Staff**Official
**External links are only visible to Support Staff**x86&x64
**External links are only visible to Support Staff**JavaRa
JDownloader:
**External links are only visible to Support Staff**JD-ZIP
JD-Installer
JD-Nightly
JD2-x86
JD2-x64
JD2 noadware:
http://board.jdownloader.org/showthread.php?t=54725
http://jdownloader.org/jdownloader2
JD2-upd only
JD Dev., Translator: http://svn.jdownloader.org/users/271
speedtest.net/result/3156325665.png
speedtest.net/result/2332385983.png

Last edited by maynak00; 02.02.2014 at 11:16.
Reply With Quote
  #712  
Old 02.02.2014, 11:43
Derp Derp is offline
JD VIP
 
Join Date: Oct 2011
Posts: 336
Default

Additionally, Link Grabber seems to be missing a few versions: http://i.imgur.com/98dEb6A.png
URL: **External links are only visible to Support Staff****External links are only visible to Support Staff**

The plugin is set to show all versions.

Build date: Feb 01 11:05:55 CET 2014
Reply With Quote
  #713  
Old 02.02.2014, 18:23
marcnn
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Derp View Post
Additionally, Link Grabber seems to be missing a few versions: **External links are only visible to Support Staff**...
URL: **External links are only visible to Support Staff**...

The plugin is set to show all versions.

Build date: Feb 01 11:05:55 CET 2014
With this link I get only the aac audio, no video
**External links are only visible to Support Staff****External links are only visible to Support Staff**
Both of the links (mine and Derp's) here.
My link: **External links are only visible to Support Staff****External links are only visible to Support Staff**
Reply With Quote
  #714  
Old 02.02.2014, 18:31
wongcc2006
Guest
 
Posts: n/a
Default

youtube plugin for 4K/1080P yesterday was awesome
but why I need the ffmpeg tool?
Reply With Quote
  #715  
Old 02.02.2014, 19:39
maynak00's Avatar
maynak00 maynak00 is offline
JD Legend
 
Join Date: May 2009
Location: Turkey
Posts: 2,051
Default

Quote:
Originally Posted by wongcc2006 View Post
youtube plugin for 4K/1080P yesterday was awesome
but why I need the ffmpeg tool?
dash (seperated audio + video files).for demux+join
__________________
JD->:thumbup:
Spoiler:
Java:
**External links are only visible to Support Staff**Official
**External links are only visible to Support Staff**x86&x64
**External links are only visible to Support Staff**JavaRa
JDownloader:
**External links are only visible to Support Staff**JD-ZIP
JD-Installer
JD-Nightly
JD2-x86
JD2-x64
JD2 noadware:
http://board.jdownloader.org/showthread.php?t=54725
http://jdownloader.org/jdownloader2
JD2-upd only
JD Dev., Translator: http://svn.jdownloader.org/users/271
speedtest.net/result/3156325665.png
speedtest.net/result/2332385983.png
Reply With Quote
  #716  
Old 02.02.2014, 23:30
Sazoga
Guest
 
Posts: n/a
Exclamation YouTube Plugin veraltet

Heyho!

Ich habe eben mein JD geupdatet und nun sagt er bei fast jedem Video Plugin veraltet

Beispielsweise hier: **External links are only visible to Support Staff****External links are only visible to Support Staff**

Bitte um Hilfe, ich brauch das bis spätestens Dienstag :|

Last edited by Sazoga; 02.02.2014 at 23:32.
Reply With Quote
  #717  
Old 02.02.2014, 23:41
khalys
Guest
 
Posts: n/a
Default

Bei mir gehts noch für Videos, die nicht DASH brauchen. 720p oder 360p also.
Reply With Quote
  #718  
Old 03.02.2014, 00:49
ChemicalNova
Guest
 
Posts: n/a
Default

I'm trying to download from Youtube with JDownloader 2 Beta, but no .mp3 or .tmp file is coming up in my list. Video Quality is 360p. Any suggestions?

Reply With Quote
  #719  
Old 03.02.2014, 00:52
maynak00's Avatar
maynak00 maynak00 is offline
JD Legend
 
Join Date: May 2009
Location: Turkey
Posts: 2,051
Default

@ChemicalNova, use jd2 beta
__________________
JD->:thumbup:
Spoiler:
Java:
**External links are only visible to Support Staff**Official
**External links are only visible to Support Staff**x86&x64
**External links are only visible to Support Staff**JavaRa
JDownloader:
**External links are only visible to Support Staff**JD-ZIP
JD-Installer
JD-Nightly
JD2-x86
JD2-x64
JD2 noadware:
http://board.jdownloader.org/showthread.php?t=54725
http://jdownloader.org/jdownloader2
JD2-upd only
JD Dev., Translator: http://svn.jdownloader.org/users/271
speedtest.net/result/3156325665.png
speedtest.net/result/2332385983.png
Reply With Quote
  #720  
Old 03.02.2014, 01:37
Lram32's Avatar
Lram32 Lram32 is offline
Spanish Supporter
 
Join Date: Jul 2012
Location: Dark side of the moon
Posts: 9,905
Default

@users who have "plugin out of date problems", where is the log?
__________________
» Setup JD2 / Instalador de JD2 «
Spoiler:

Installer for Windows XP/Vista/Seven/Eight
|| JD2 x86 - x64 (Beta) ||

Installer for Mac
|| JD2 (Beta) ||

Installers for Linux
|| JD2 (Beta) x86 || <---> || JD2 (Beta) x64 ||

How to Create a Log
-» Click Here «-


¿Cómo crear un registro?
-» Click Aquí «-


Support Chat / Chat de Soporte
-» Click Here / Click Aquí «-


Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 18:16.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.