Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-tools-x393
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-tools-x393
Commits
2b127bd8
Commit
2b127bd8
authored
Jan 11, 2017
by
Mikhail Karpenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Accept path to dump file directory from command line
parent
51d8f57e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
extract_images.php
extract_images.php
+4
-1
No files found.
extract_images.php
View file @
2b127bd8
...
...
@@ -43,7 +43,10 @@ echo "<pre>\n";
// }
if
(
isset
(
$_GET
[
'path'
]))
$path
=
$_GET
[
'path'
];
else
$path
=
"."
;
else
if
(
$argc
==
2
)
$path
=
$argv
[
1
];
else
$path
=
"."
;
if
(
isset
(
$_GET
[
'ext'
]))
$extension
=
$_GET
[
'ext'
];
else
$extension
=
"jp4"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment