POL_Install_DirectShowFiltersFix
Informations
Créateur | Messages |
---|---|
MTres19
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience1 0 DescriptionThis installs K-Lite Codec Pack and sets LAV as the default for all supported formats to overcome deficiencies in Wine's DirectShow filters. Code source#!/bin/bash # PlayOnLinux Function # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters # Changelog # 2019-04-18 Download URL changed because dead. v1385 is the last supporting WinXP SP3. Dadu042. # Download K-Lite POL_Download_Resource "http://files2.codecguide.com/K-Lite_Codec_Pack_1385_Basic.exe" "0d0dc84a72b9a6a97809370996751b27" # Write unattended installation config cd "$POL_USER_ROOT/ressources" cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack NoIcons=0 SetupType=custom Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters Tasks=reset_settings, config_shortcuts, adjust_preferred_decoders [Thumbnails] Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a [Audio Configuration] audio_passthrough=0 bitstream_ac3=0 bitstream_dts=0 bitstream_eac3=0 bitstream_dtshd=0 bitstream_thruehd=0 EOF # Start K-Lite setup POL_Wine K-Lite_Codec_Pack_1385_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Dimanche 21 Avril 2019 à 0:26 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesI fix my stupid error (checksum). Differences@@ -3,18 +3,18 @@ # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters - + # Changelog # 2019-04-18 Download URL changed because dead. v1385 is the last supporting WinXP SP3. Dadu042. - - + + # Download K-Lite -POL_Download_Resource "http://files2.codecguide.com/K-Lite_Codec_Pack_1385_Basic.exe" "2970e63075b09317597a9fc140b0639e" - +POL_Download_Resource "http://files2.codecguide.com/K-Lite_Codec_Pack_1385_Basic.exe" "0d0dc84a72b9a6a97809370996751b27" + # Write unattended installation config cd "$POL_USER_ROOT/ressources" - + cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack @@ -32,6 +32,6 @@ bitstream_dtshd=0 bitstream_thruehd=0 EOF - + # Start K-Lite setup POL_Wine K-Lite_Codec_Pack_1385_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters # Changelog # 2019-04-18 Download URL changed because dead. v1385 is the last supporting WinXP SP3. Dadu042. # Download K-Lite POL_Download_Resource "http://files2.codecguide.com/K-Lite_Codec_Pack_1385_Basic.exe" "0d0dc84a72b9a6a97809370996751b27" # Write unattended installation config cd "$POL_USER_ROOT/ressources" cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack NoIcons=0 SetupType=custom Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters Tasks=reset_settings, config_shortcuts, adjust_preferred_decoders [Thumbnails] Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a [Audio Configuration] audio_passthrough=0 bitstream_ac3=0 bitstream_dts=0 bitstream_eac3=0 bitstream_dtshd=0 bitstream_thruehd=0 EOF # Start K-Lite setup POL_Wine K-Lite_Codec_Pack_1385_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" RéponsesEdité par Dadu042 |
Dadu042 | Jeudi 18 Avril 2019 à 7:52 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDownload URL changed because dead. v1.3.85 is the last supporting WinXP SP3. Differences@@ -3,13 +3,18 @@ # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters - + +# Changelog +# 2019-04-18 Download URL changed because dead. v1385 is the last supporting WinXP SP3. Dadu042. + + # Download K-Lite -POL_Download_Resource "http://filessjc01.dddload.net/static/K-Lite_Codec_Pack_1170_Basic.exe" "4193bf48de07e9089bda971e98efda8c" - +POL_Download_Resource "http://files2.codecguide.com/K-Lite_Codec_Pack_1385_Basic.exe" "2970e63075b09317597a9fc140b0639e" + + # Write unattended installation config cd "$POL_USER_ROOT/ressources" - + cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack @@ -27,6 +32,6 @@ bitstream_dtshd=0 bitstream_thruehd=0 EOF - + # Start K-Lite setup -POL_Wine K-Lite_Codec_Pack_1170_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" \ No newline at end of file +POL_Wine K-Lite_Codec_Pack_1385_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters # Changelog # 2019-04-18 Download URL changed because dead. v1385 is the last supporting WinXP SP3. Dadu042. # Download K-Lite POL_Download_Resource "http://files2.codecguide.com/K-Lite_Codec_Pack_1385_Basic.exe" "2970e63075b09317597a9fc140b0639e" # Write unattended installation config cd "$POL_USER_ROOT/ressources" cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack NoIcons=0 SetupType=custom Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters Tasks=reset_settings, config_shortcuts, adjust_preferred_decoders [Thumbnails] Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a [Audio Configuration] audio_passthrough=0 bitstream_ac3=0 bitstream_dts=0 bitstream_eac3=0 bitstream_dtshd=0 bitstream_thruehd=0 EOF # Start K-Lite setup POL_Wine K-Lite_Codec_Pack_1385_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" Réponses |
ewew | Jeudi 23 Novembre 2017 à 22:00 |
ewew
|
Messageshow do i install the codec pack. Réponses |
MTres19 | Vendredi 27 Novembre 2015 à 3:58 |
MTres19
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messages--Remove systray icons Differences@@ -16,7 +16,7 @@ NoIcons=0 SetupType=custom Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters -Tasks=reset_settings, config_shortcuts, systray_lavsplitter, systray_lav, adjust_preferred_decoders +Tasks=reset_settings, config_shortcuts, adjust_preferred_decoders [Thumbnails] Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a [Audio Configuration] Nouveau code source#!/bin/bash # PlayOnLinux Function # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters # Download K-Lite POL_Download_Resource "http://filessjc01.dddload.net/static/K-Lite_Codec_Pack_1170_Basic.exe" "4193bf48de07e9089bda971e98efda8c" # Write unattended installation config cd "$POL_USER_ROOT/ressources" cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack NoIcons=0 SetupType=custom Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters Tasks=reset_settings, config_shortcuts, adjust_preferred_decoders [Thumbnails] Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a [Audio Configuration] audio_passthrough=0 bitstream_ac3=0 bitstream_dts=0 bitstream_eac3=0 bitstream_dtshd=0 bitstream_thruehd=0 EOF # Start K-Lite setup POL_Wine K-Lite_Codec_Pack_1170_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" Réponses |
MTres19 | Jeudi 26 Novembre 2015 à 17:15 |
MTres19
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,32 @@ +#!/bin/bash +# PlayOnLinux Function +# Date: 2015-11-25 +# Author: MTres19 +# Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters + +# Download K-Lite +POL_Download_Resource "http://filessjc01.dddload.net/static/K-Lite_Codec_Pack_1170_Basic.exe" "4193bf48de07e9089bda971e98efda8c" + +# Write unattended installation config +cd "$POL_USER_ROOT/ressources" + +cat <<EOF>klcp_basic_unattended.ini +[Setup] +Group=K-Lite Codec Pack +NoIcons=0 +SetupType=custom +Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters +Tasks=reset_settings, config_shortcuts, systray_lavsplitter, systray_lav, adjust_preferred_decoders +[Thumbnails] +Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a +[Audio Configuration] +audio_passthrough=0 +bitstream_ac3=0 +bitstream_dts=0 +bitstream_eac3=0 +bitstream_dtshd=0 +bitstream_thruehd=0 +EOF + +# Start K-Lite setup +POL_Wine K-Lite_Codec_Pack_1170_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # Date: 2015-11-25 # Author: MTres19 # Use: Downloads and K-Lite Codec Pack to overcome deficiencies in Wine's DirectShow filters # Download K-Lite POL_Download_Resource "http://filessjc01.dddload.net/static/K-Lite_Codec_Pack_1170_Basic.exe" "4193bf48de07e9089bda971e98efda8c" # Write unattended installation config cd "$POL_USER_ROOT/ressources" cat <<EOF>klcp_basic_unattended.ini [Setup] Group=K-Lite Codec Pack NoIcons=0 SetupType=custom Components=video\h264\lav, video\hevc\lav, video\mpeg4\lav, video\mpeg2\lav, video\vc1\lav, video\wmv\lav, video\other\lav, audio\ac3dts\lav, audio\truehd\lav, audio\aac\lav, audio\mpeg\lav, audio\wma\lav, audio\other\lav, sourcefilter\avi\lav, sourcefilter\matroska\lav, sourcefilter\mp4\lav, sourcefilter\mpegts\lav, sourcefilter\mpegps\lav, sourcefilter\wmv\lav, sourcefilter\lav, subtitles\vsfilter, tools\codectweaktool, shell\icaros_thumbnail, shell\icaros_property, misc\brokencodecs, misc\brokenfilters Tasks=reset_settings, config_shortcuts, systray_lavsplitter, systray_lav, adjust_preferred_decoders [Thumbnails] Extensions=.avi;.divx;.amv;.mpeg;.mpg;.m1v;.m2v;.mp2v;.mpv2;.vob;.evo;.wmv;.mp4;.m4v;.mp4v;.mpv4;.hdmov;.mov;.3g2;.3gp;.3gp2;.3gpp;.dv;.mkv;.webm;.flv;.f4v;.ts;.m2ts;.mts;.m2t;.tp;.mxf;.ogm;.ogv;.rm;.rmvb;.ape;.flac;.mka;.mpc;.opus;.tak;.wv;.m4a [Audio Configuration] audio_passthrough=0 bitstream_ac3=0 bitstream_dts=0 bitstream_eac3=0 bitstream_dtshd=0 bitstream_thruehd=0 EOF # Start K-Lite setup POL_Wine K-Lite_Codec_Pack_1170_Basic.exe /verysilent /norestart /LoadInf=".\klcp_basic_unattended.ini" Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com