File: main.c

package info (click to toggle)
ffmpegthumbnailer 2.2.2%2Bgit20220218%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 864 kB
  • sloc: cpp: 11,403; ansic: 76; sh: 37; makefile: 13
file content (57 lines) | stat: -rw-r--r-- 1,862 bytes parent folder | download | duplicates (4)
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
//    Copyright (C) 2010 Dirk Vanden Boer <dirk.vdb@gmail.com>
//
//    This program is free software; you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation; either version 2 of the License, or
//    (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program; if not, write to the Free Software
//    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdlib.h>
#include <stdio.h>

#include "libffmpegthumbnailer/videothumbnailerc.h"

int main(int argc, char** argv)
{
    if (argc != 2)
    {
        printf("No moviefile specified\n");
        return -1;
    }

    video_thumbnailer* thumbnailer = video_thumbnailer_create();
    image_data* imageData = video_thumbnailer_create_image_data();

    thumbnailer->seek_percentage        = 15;
    thumbnailer->overlay_film_strip     = 1;
    thumbnailer->thumbnail_size         = 256;
    thumbnailer->thumbnail_image_type   = Jpeg;

    if (video_thumbnailer_generate_thumbnail_to_buffer(thumbnailer, argv[1], imageData) == 0)
    {
        FILE* imageFile = fopen("output.jpg", "wb");
        fwrite(imageData->image_data_ptr, 1 , imageData->image_data_size, imageFile);
        fclose(imageFile);
    }
    else
    {
        printf("Failed to generate thumbnail\n");
    }

    video_thumbnailer_destroy_image_data(imageData);
    video_thumbnailer_destroy(thumbnailer);

    return 0;
}