Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
![]() |
#21 | Link |
Registered User
Join Date: Sep 2010
Posts: 34
|
Do you mean this?
"Now supports loading chapter metadata from .xchp file. Use text file (UTF-8 encoding). Each line is a chapter defined as HH:MM:SS,ddd timecode, optionally followed by a space and chapter name." ![]() If "yes", I had already read it but it is not at all clear: 1) Do I need to manually create the xchp file (I can't find any command to create it within Mpc)? 2) I tried to create it manually, with the same name as the video file, but it is not seen within Mpc (e.g. in "Add to Favorites..."). 3) In all cases where I have tried (I'm using the default configuration of Mpc 1.9.21.38; I tried with last stable release also), "Chapter Menu" (in Navigate menu) is ALWAYS disabled. 4) Do I have to manually create a chapter entry (via text editor, "masochism mode" ![]() "Very clear"? Yeah, for sure. ![]() ![]() |
![]() |
![]() |
![]() |
#22 | Link |
*****
Join Date: Feb 2005
Posts: 5,714
|
Code:
00:00:10,000 chapter1 00:00:20,000 chapter2 It gets loaded automatically. You are doing something wrong, like using a dot instead of a comma.
__________________
MPC-HC 2.4.1 |
![]() |
![]() |
![]() |
#23 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Might be a little more friendly if chapter file parser accepted both '.' and ',' as fractional second separator.
',' separator looks quite alien to many, including myself, So long as chapter parser code is MPC-HC native and not some other included lib, should be quite trivial to mod it, also avoid any related confusion and having to answer posts about it.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 11th June 2022 at 14:30. |
![]() |
![]() |
![]() |
#24 | Link |
Registered User
Join Date: Dec 2008
Posts: 2,202
|
As far as I understand, time formatting is used as in SubRip. This is the most popular format for simple subtitles.
__________________
MPC-BE 1.8.3 and Nightly builds | VideoRenderer | ImageSource | ScriptSource | BassAudioSource |
![]() |
![]() |
![]() |
#25 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Yes, I just checked some SubRip times and as you say, is comma separated,
interestingly, Subtitle Edit shows the same subtitles with silent conversion to period separator. If it is an easy parser fix, then would save some confusion. EDIT: With no downside.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 11th June 2022 at 15:56. |
![]() |
![]() |
![]() |
#26 | Link |
*****
Join Date: Feb 2005
Posts: 5,714
|
I am not going to allow that. The formatting is clearly defined.
__________________
MPC-HC 2.4.1 |
![]() |
![]() |
![]() |
#27 | Link | |
Registered User
Join Date: Sep 2010
Posts: 34
|
Quote:
![]() Any keyboard shortcut to switch between chapters while playing the video? ![]() Last edited by rbauer; 11th June 2022 at 19:51. |
|
![]() |
![]() |
![]() |
#28 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
rbauer,
Perhaps of use, This converts Chapter info extracted from eg MKV via MediaInfo and pasted into txt file ===>>> an xchp file with MediaInfo PERIOD separator changed to COMMA. ConvMiTxtToMpcHcChap.avsi [Avisynth Script] Code:
# ConvMiTxtToMpcHcChap.avsi # Converts MediaInfo Chapter info in txt file, to MediaPlayerClassic-Home Cinema *.xchp style. # Requires AVS+, and RT_Stats v2.0 Beta13+ Function ConvMiTxtToMpcHcChap(String txtfile,String "chapfile") { myName = "ConvMiTxtToMpcHcChap: " Assert(txtfile!="",RT_String("%stxtfile path required",myName)) txtfile = txtfile.RT_GetFullPathName Assert(Txtfile.Exist,RT_String("%stxtfile Does not Exist",myName)) ChapFile = Default(chapfile,txtFile.RT_FilenameSplit(7) + ".xchp") # Default, Change txtFile extension to ".xchp") RT_FileDelete(chapfile) SIN=RT_ReadTxtFromFile(txtfile) LINES = SIN.RT_TxtQueryLines for(i=0,LINES-1){ S = SIN.RT_TxtGetLine(Line=i).ChrEatWhite.RevStr.ChrEatWhite.RevStr # Get Line of text, remove EOL and Eat leading & trailing White Space. if(S.FindStr(".")==9) { S = S.LeftStr(8) + "," + S.MidStr(10) # Replace 9th PERIOD char with COMMA char. } RT_WriteFile(chapfile,"%s",S,Append=True) } return 0 } # Import(".\ConvMiTxtToMpcHcChap.avsi") # Client Script textFile = ".\Test.txt" ConvMiTxtToMpcHcChap(textfile) Return MessageClip("DONE") Test.txt, [source (copy/Paste) from MediaInfo] Code:
00:00:00.000 : en:Chapter 01 00:03:22.285 : en:Chapter 02 00:10:15.156 : en:Chapter 03 00:15:24.214 : en:Chapter 04 00:18:25.187 : en:Chapter 05 00:21:58.817 : en:Chapter 06 00:24:52.157 : en:Chapter 07 00:29:17.130 : en:Chapter 08 00:32:01.085 : en:Chapter 09 00:34:45.541 : en:Chapter 10 00:40:08.030 : en:Chapter 11 00:42:48.232 : en:Chapter 12 00:47:50.075 : en:Chapter 13 00:51:12.736 : en:Chapter 14 00:58:03.104 : en:Chapter 15 01:01:41.614 : en:Chapter 16 01:04:24.944 : en:Chapter 17 01:08:54.255 : en:Chapter 18 01:11:53.726 : en:Chapter 19 01:16:33.505 : en:Chapter 20 01:22:05.503 : en:Chapter 21 01:26:19.716 : en:Chapter 22 01:37:47.653 : en:Chapter 23 01:44:36.270 : en:Chapter 24 01:50:38.048 : en:Chapter 25 01:53:22.670 : en:Chapter 26 01:59:17.441 : en:Chapter 27 02:03:50.756 : en:Chapter 28 02:07:32.353 : en:Chapter 29 02:14:24.389 : en:Chapter 30 02:20:48.565 : en:Chapter 31 02:23:11.833 : en:Chapter 32 Code:
00:00:00,000 : en:Chapter 01 00:03:22,285 : en:Chapter 02 00:10:15,156 : en:Chapter 03 00:15:24,214 : en:Chapter 04 00:18:25,187 : en:Chapter 05 00:21:58,817 : en:Chapter 06 00:24:52,157 : en:Chapter 07 00:29:17,130 : en:Chapter 08 00:32:01,085 : en:Chapter 09 00:34:45,541 : en:Chapter 10 00:40:08,030 : en:Chapter 11 00:42:48,232 : en:Chapter 12 00:47:50,075 : en:Chapter 13 00:51:12,736 : en:Chapter 14 00:58:03,104 : en:Chapter 15 01:01:41,614 : en:Chapter 16 01:04:24,944 : en:Chapter 17 01:08:54,255 : en:Chapter 18 01:11:53,726 : en:Chapter 19 01:16:33,505 : en:Chapter 20 01:22:05,503 : en:Chapter 21 01:26:19,716 : en:Chapter 22 01:37:47,653 : en:Chapter 23 01:44:36,270 : en:Chapter 24 01:50:38,048 : en:Chapter 25 01:53:22,670 : en:Chapter 26 01:59:17,441 : en:Chapter 27 02:03:50,756 : en:Chapter 28 02:07:32,353 : en:Chapter 29 02:14:24,389 : en:Chapter 30 02:20:48,565 : en:Chapter 31 02:23:11,833 : en:Chapter 32 EDIT: 1st Chapter at 00:00:00 [does not seem to show fractional seconds] ![]() EDIT: Does NOT seem to cause problems if you just use the PERIOD separated text copy/pasted from MediaInfo, MPC-HC Probably just ignores Period separated fractional seconds. So, Maybe just Copy/Paste from MediaInfo and use that text file, WITHOUT using this script, I doubt that fractional seconds are that important anyway.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 11th June 2022 at 21:24. |
![]() |
![]() |
![]() |
#29 | Link |
Registered User
Join Date: Dec 2008
Posts: 2,202
|
Is the .xcph file format documented somewhere? Is this a well-known format or a special format of the MPC-HC project?
__________________
MPC-BE 1.8.3 and Nightly builds | VideoRenderer | ImageSource | ScriptSource | BassAudioSource |
![]() |
![]() |
![]() |
#30 | Link | |
Registered User
Join Date: Sep 2010
Posts: 34
|
Quote:
I study on video lessons, so my need is to tag the various most important points; example using potplayer: 1) Open video file "videolesson1.mp4" 2) During its playback, when I find an important point I press "p" ("Add bookmark") to mark its time and this will automatically create the pbf file (with the same name as the video file, so videolesson1.pbf) with its time information inside it. 3) Ctrl+PgUp and Ctrl+PgDown to move from chapter/bookmark to chapter/bookmark while the video is playing. Done! I would like to stop using potpl, but this need of mine makes the task very difficult for me. ![]() |
|
![]() |
![]() |
![]() |
#31 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
rB,
Does something like this sound OK:- https://forum.doom9.org/showthread.php?t=173010 Assuming I can get it working OK, would use VirtualDub2 + Windows NotePad to create a BookMark File. Load mp4 into VD2, scan though clip using VD2 controls, hit CTRL/INSERT to Insert Chapter into the NotePad text file. EDIT: As it currently stands, it inserts frame numbers, should (I hope) be easy to insert time instead. It's your job to think of a name for it ![]()
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 12th June 2022 at 10:48. |
![]() |
![]() |
![]() |
#32 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Yo Dude !,
See Here [ MPC-HC EDL Editor ] :- https://forum.doom9.org/showthread.php?t=173964 Might be what you want [EDL keys are in MPC...Options/Player/Keys/ and right at the end of the listbox]. I think it might be of interest [but I aint tried it]. Say if you want me to continue with the VD_Edkey clone thingy ![]() EDIT: Alternative:- https://forum.videohelp.com/threads/...n-in-clipboard Macro to copy Frame number from VirtualDub to notepad, maybe could be hacked for time instead. Written by RaffRiff42 as AutoHotKey Macro [I dont speak autohotkey, and RR42 dont visit D9 for some time] EDIT: Dont seem to be a way to copy current time to clipboard in VDub/VDub2, so above autohotkey script may not be hackable.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 12th June 2022 at 12:34. |
![]() |
![]() |
![]() |
#33 | Link | |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Here see VD_EdChap - Make Chapter list using VDub2:- https://forum.doom9.org/showthread.php?t=184191
Quote:
You can load your MP4 into VDub2, scan though, stop and press CTRL/INSERT to write frame time to a NotePad file. EDIT: Thread at above link updated, now supports optional chapter title. Above quoted text updated.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 13th June 2022 at 20:33. Reason: Updated |
|
![]() |
![]() |
![]() |
#34 | Link | |
Registered User
Join Date: Sep 2010
Posts: 34
|
Quote:
Many thanks. Last edited by rbauer; 12th June 2022 at 16:30. |
|
![]() |
![]() |
![]() |
#35 | Link | |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Thread linked in post #33 updated, to v0.01, supports optional chapter title.
Optionally with Chapter title. [below eg, user prompted for title "Minute 6"] Code:
00:00:00,000 Minute 0 00:01:00,000 Minute 1 00:02:00,000 Minute 2 00:03:00,000 Minute 3 00:04:00,000 Minute 4 00:05:00,000 Minute 5 00:06:00,000 Minute 6 00:07:00,000 Minute 7 00:08:00,000 Minute 8 00:09:00,000 Minute 9 00:10:00,000 Minute 10 00:34:38,000 Sometime 01:33:46,000 somewhere EDIT: Quote:
Open MovieName.mp4 in VirtualDub2, run VD_EdChap.Exe. NotePad needs a little screen space to view a couple of lines of text, VDub2 can have the rest, and you are good to go. 30 seconds of preparation at most really. When you're done, just play the MovieName.mp4 in MPC-HC, will auto load the MovieName.xchp and you can skip back and forth as much as you like with PageUp/PageDwn. In MPC-HC, both time and title are shown for a few seconds when joyfully skipping about.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 13th June 2022 at 20:32. |
|
![]() |
![]() |
![]() |
#36 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Chapter Files
Just thought I'de point out that MeGUI (only MKV muxer tested) demands PERIOD '.' separator as fractional seconds separator, unlike MPC-HC player which demands COMMA ','. Error, First couple of lines of chapter file. [MeGUI mkv Muxer works OK with periods (no error in MeGUI), but not with COMMA ','] Code:
CHAPTER01=00:00:00,000 CHAPTER01NAME=01: Intro CHAPTER02=00:01:57,743 CHAPTER02NAME=02: Estoy Aqui ![]() Using MeGUI demanded PERIOD fractional separator, results in no chapter marks displaying in MPC-HC. PERIOD '.' separator MeGUI muxed files display chapters ok in PotPlayer. I guess that as far as chapter files are concerned, MeGUI and MPC-HC are "mutually exclusive". (but PotPlayer works ok with either PERIOD or COMMA separators)
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 22nd June 2023 at 21:21. |
![]() |
![]() |
![]() |
#37 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Further to previous post above.
I've just found this in mkvtoolnix-64-bit-77.0.7z, examples/example-chapters-1.xml Code:
<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE Chapters SYSTEM "matroskachapters.dtd"> <!-- A simple example. The movie in question contains four parts: --> <!-- The intro starting at the beginning, the first act, the second --> <!-- act, and the credits. --> <!-- Note that the end timestamps are optional. --> <!-- The timestamps use the normal format of HH:MM:SS.mmm with --> <!-- HH beging the hour, MM the minute, SS the second and --> <!-- mmm the milliseconds. --> <Chapters> <EditionEntry> <EditionDisplay> <EditionString>Example movie</EditionString> <EditionLanguageIETF>en</EditionLanguageIETF> </EditionDisplay> <ChapterAtom> <ChapterTimeStart>00:00:00.000</ChapterTimeStart> <ChapterDisplay> <ChapterString>Intro</ChapterString> <ChapterLanguage>eng</ChapterLanguage> </ChapterDisplay> <ChapterSkipType>1</ChapterSkipType> </ChapterAtom> <ChapterAtom> <ChapterTimeStart>00:01:00.000</ChapterTimeStart> <ChapterDisplay> <ChapterString>Act 1</ChapterString> <ChapLanguageIETF>en</ChapLanguageIETF> </ChapterDisplay> <ChapterSkipType>0</ChapterSkipType> </ChapterAtom> <ChapterAtom> <ChapterTimeStart>00:05:30.000</ChapterTimeStart> <ChapterDisplay> <ChapterString>Act 2</ChapterString> <ChapLanguageIETF>en</ChapLanguageIETF> </ChapterDisplay> <ChapterSkipType>0</ChapterSkipType> </ChapterAtom> <ChapterAtom> <ChapterTimeStart>00:12:20.000</ChapterTimeStart> <ChapterTimeEnd>00:12:55.000</ChapterTimeEnd> <ChapterDisplay> <ChapterString>Credits</ChapterString> <ChapLanguageIETF>en</ChapLanguageIETF> </ChapterDisplay> <ChapterSkipType>2</ChapterSkipType> </ChapterAtom> </EditionEntry> <!-- There are two new flags that have been added to Matroska lately. --> <!-- They are flags that enable/disable and hide/unhide chapters. --> <!-- Here's just a small example: --> <EditionEntry> <ChapterAtom> <ChapterTimeStart>00:02:00.000</ChapterTimeStart> <ChapterTimeEnd>00:04:00.000</ChapterTimeEnd> <ChapterFlagHidden>1</ChapterFlagHidden> <ChapterFlagEnabled>0</ChapterFlagEnabled> <ChapterDisplay> <ChapterString>A hidden and not enabled chapter.</ChapterString> <ChapterLanguage>eng</ChapterLanguage> </ChapterDisplay> </ChapterAtom> </EditionEntry> </Chapters> Its beginning to look a lot like MPC-HC is in the minority with its demanded COMMA ',' separator. I would expect it be be a trivial fix in the [EDIT: MPC-HC] parser to support either separator. EDIT: Perhaps the "The selected file is not a valid chapter file" error from previous post is from an MkvToolnix utility rather than MeGUI itself.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 1st July 2023 at 12:40. |
![]() |
![]() |
![]() |
#39 | Link | |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Quote:
From CmdLines64.ini [x64 version], Code:
Usage: PotPlayerMini64.exe ["content"] [/switch] "content" : You can specify a file, folder or URL as content. -You can specify multiple contents by separating them with a space. -You can specify titles for URLs by separating them with a backslash (\) at the end of URLs. ("http://...\title of this url") -Wildcards (*,?) are allowed. -The setting "Misc > When Files Opened" affects this when a file is specified. - : Plays streaming media from stdin -Example usage: youtube-dl.exe -o - -f best[ext=webm] https://www.youtube.com/watch?v=l22sS8DEiVU | PotPlayerMini64.exe - /filedlg : Opens the open file dialog box. /urldlg : Opens the open URL dialog box. /folderdlg : Opens the open folder dialog box. /simple : Opens file navigator. /cap : Runs screen capture. /cam : Runs webcam/Other devices. /atv[:ch] : Runs Analog TV device from the specified channel. /dtv[:ch[-idx]] : Runs Digital TV device from the specified channel. /dvd : Runs DVD device. /cd[:drive] : Runs the specified drive. /add : Appends the specified content(s) into playlist. /insert : Inserts the specified content(s) just below the item being played in playlist.(Or adds at the end of playlist if there is nothing playing at the time) /autoplay : Plays the last played item. /same : Loads and plays the specified contents as multiple streams. -You can independently select loaded video and audio streams under Video/Audio/Filters context menus. /sort : Sorts the specified contents by name before adding them into playlist. /randomize : Sorts the specified contents by randomly before adding them into playlist. /new : Plays the specified content(s) within a new instance of the program. -The setting "F5 > General > Multiple instances" does not affect this. /current : Plays the specified content(s) within an existing instance of the program. -The setting "F5 > General > Multiple instances" does not affect this. /clipboard : Appends content(s) from clipboard into playlist and starts playback immediately. /seek=time : Starts playback of the specified/last played content from the specified time point. -time format is: hh:mm:ss.ms (OR specify seconds only e.g. /seek=1800 to start at 30th min) /sub="subfile" : Loads the specified subtitle(s) from the specified paths or URLs. /user_agent="ua" : Sets user agent header for HTTP(S) requests. /referer="ref" : Sets referer header for HTTP(S) requests. /headers="hdrs" : Appends the specified header(s) to HTTP(S) requests. /title="title" : Use title config="name" : Activates the specified preset. Code:
"C:\Program Files\DAUM\PotPlayer\PotPlayerMini64.exe" "c:\z\kp.mp4" /add Click on the player [or hit SPACE bar], and it will commence playing. [If you want it to also show only the first frame, then I've no idea how] EDIT: Just starting the "EMPTY" player without any video file, and clicking on player [or hit SPACE bar], plays previous video that was played. (probably playing from start, or from last played position, depending upon settings) EDIT: Potplayer used to [probably still does] get slagged of for not complying with Open Source requirements, just noticed that it now has this in folder, Code:
GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. ... etc Code:
This software is a freeware product, which can be used freely by individual/company/school/government office/etc. users to play media files as long as it's for non-commercial purposes. * Attention - This software is protected by copyright laws and software protection law, and modifying, reverse engineering, decompiling, disassembling, or otherwise making changes to the software beyond what is specifically allowed by relevant laws is strictly prohibited.(Except for FFmpeg,lame which have LGPL licenses) - This software cannot be used for commercial purposes without the permission of the copyright owner. * Copyright Information - This software includes a video decoder based on FFmpeg (http://www.ffmpeg.org) which is licensed under LGPL license.(To review the LGPL license, look for LGPL.txt in install directory) The modified FFmpeg source can be downloaded from http://potplayer.daum.net/devel/ffmpeg.zip. - This software uses Zlib library which is licensed under zlib license.(http://www.zlib.net) - This software uses rar library made publicly available by RARLAB.(http://www.rarlab.com) - This software uses png library which is licensed under zlib/png license.(http://www.libpng.org) - This software uses OGG (VORBIS) library made publicly available by Xiph.org which is licensed under BSD-like license.(http://www.vorbis.com) - This software uses BASS library.(http://www.un4seen.com) - This software uses MediaInfo library.(http://mediaarea.net) - This software uses SQLite library.(http://www.sqlite.org) - This software uses AngelScript library.(http://www.angelcode.com/angelscript) - This software uses JsonCpp library which is licensed under MIT license.(https://github.com/open-source-parsers/jsoncpp) - This software uses RapidJSON library which is licensed under MIT license.(https://github.com/Tencent/rapidjson) - This software uses base64 library which is licensed under zlib license.(https://github.com/ReneNyffenegger/cpp-base64) - This software uses FreeType font renderer library.(http://www.freetype.org) - This software's installer was made using NSIS program which is licensed under zlib/libpng license.(http://nsis.sourceforge.net) - This software was translated into English by DVB Support.(http://www.dvbsupport.net) - This software copyrights (C) are owned by Kakao Corp.(https://www.kakaocorp.com/?lang=en) (They also do not supply any modification done to original open source code, nor any source code at all)
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 13th July 2023 at 02:52. |
|
![]() |
![]() |
![]() |
#40 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,150
|
Prev post probably has same problem as this.
I made a shortcut ![]() with path and PotplayerMini64.exe and added " /add". I thought that it might require " %1 /add" but that would not work at all neither would " /add %1". (as per this thread on VideoHelp:- https://forum.videohelp.com/threads/...r-Command-Line ) So, as it stands, if you double click the shortcut is will play whatever is in the playlist, if there is nothing in playlist, then will play last video that was played. ["Play", when hit SPACE bar or click player] If drag/drop file onto shortcut, it will append it to the END of the existing playlist, if playlist empty then will add to playlist and play that file. ["Play", when hit SPACE bar or click player] So, I expect the command CMD file posted earlier will work exactly the same, so playlist needs to be empty or drag/drop files will only add to the end of the playlist and play the wrong file. Not gonna play with this any longer, seems to be a no win situation.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? |
![]() |
![]() |
![]() |
Tags |
pause, paused, potplayer |
Thread Tools | Search this Thread |
Display Modes | |
|
|