File size: 1,958 Bytes
3ee5e84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const express = require('express');
const puppeteer = require('puppeteer');
const path = require('path');

const app = express();
const port = 8000;

// Sử dụng middleware express.static để phục vụ các tệp tĩnh từ thư mục 'public'
app.use(express.static(path.join(__dirname, 'public')));

// Endpoint '/reel' để trích xuất cả video và hình ảnh từ một URL được cung cấp
app.get('/reel', async (req, res) => {
    const reelUrl = req.query.url;

    try {
        // Khởi tạo một trình duyệt Puppeteer với tùy chọn '--no-sandbox'
        const browser = await puppeteer.launch({
            headless: true,
            args: ['--no-sandbox', '--disable-setuid-sandbox']
        });
        const page = await browser.newPage();
        await page.goto(reelUrl, { waitUntil: 'networkidle2' });

        const mediaUrls = await page.evaluate(() => {
            const videoElements = document.querySelectorAll('video');
            const imageElements = document.querySelectorAll('img');
            const urls = [];

            // Trích xuất các URL của video
            videoElements.forEach(video => {
                urls.push({ type: 'video', url: video.src });
            });

            // Trích xuất các URL của hình ảnh và loại bỏ các hình ảnh tỷ lệ 1:1
            imageElements.forEach(image => {
                if (image.naturalWidth / image.naturalHeight !== 1) {
                    urls.push({ type: 'image', url: image.src });
                }
            });

            return urls;
        });

        await browser.close();

        res.json(mediaUrls);
    } catch (error) {
        console.error('Error:', error);
        res.status(500).send('Internal Server Error');
    }
});

// Lắng nghe các kết nối trên cổng đã được chỉ định
app.listen(port, () => {
    console.log(`Server is running at http://localhost:${port}`);
});