{"id":23161458,"url":"https://github.com/softyesti/soft_converter","last_synced_at":"2026-04-04T20:32:45.169Z","repository":{"id":239835044,"uuid":"801023166","full_name":"softyesti/soft_converter","owner":"softyesti","description":"A dart package/library for convert videos and images to some formats using cwebp and FFmpeg","archived":false,"fork":false,"pushed_at":"2024-07-17T15:45:18.000Z","size":90668,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T17:35:52.289Z","etag":null,"topics":["converter","cwebp","dart","dart-library","dart-package","ffmpeg","ffmpeg-wrapper","flutter","flutter-library","flutter-package","image-converter","image-manipulation","library","package","video-converter","video-manipulation"],"latest_commit_sha":null,"homepage":"https://www.softyes.com.br","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/softyesti.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-15T12:56:56.000Z","updated_at":"2024-12-26T02:29:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"faf89029-30ec-46de-a009-a42f5922c14b","html_url":"https://github.com/softyesti/soft_converter","commit_stats":null,"previous_names":["softyesti/soft_converter"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/softyesti/soft_converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softyesti%2Fsoft_converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softyesti%2Fsoft_converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softyesti%2Fsoft_converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softyesti%2Fsoft_converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/softyesti","download_url":"https://codeload.github.com/softyesti/soft_converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softyesti%2Fsoft_converter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31413269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["converter","cwebp","dart","dart-library","dart-package","ffmpeg","ffmpeg-wrapper","flutter","flutter-library","flutter-package","image-converter","image-manipulation","library","package","video-converter","video-manipulation"],"created_at":"2024-12-17T23:14:15.866Z","updated_at":"2026-04-04T20:32:45.141Z","avatar_url":"https://github.com/softyesti.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Soft Converter\n\nA Dart package/library for convert some video and images to some formats using [cwebp](https://developers.google.com/speed/webp/docs/cwebp) and [FFmpeg](https://ffmpeg.org/).\nThis package is not ready for production!\n\n## Resources\n\n- Convert `.jpg` and `.png` images to `.webp`\n- Convert `.mp4` videos to `.webm`\n\n## Platforms\n\n- Windows\n- macOS\n- Linux\n\n## Pre-requisites\n\n- Have the `cwebp` binary or have it installed and available in the system path\n- Have the `FFmpeg` binary or have it installed and available in the system path\n\n## Usage\n\n### SoftImageConverter\n\n```dart\n// ignore_for_file: avoid_print\n\nimport 'dart:io';\n\nimport 'package:soft_converter/soft_converter.dart';\n\nFuture\u003cvoid\u003e main() async {\n  // The paths for the binaries are optional, if not defined\n  // SoftConverter will use the system path.\n  final converter = SoftImageConverter();\n\n  try {\n    final files = await converter.toWEBP(\n      inputs: [File('assets/space.jpg')],\n      output: Directory('assets/'),\n    );\n\n    for (final file in files) {\n      print('Image file path: ${file.path}');\n    }\n  } catch (e) {\n    rethrow;\n  }\n}\n```\n\n### SoftVideoConverter\n\n```dart\n// ignore_for_file: avoid_print\n\nimport 'dart:io';\n\nimport 'package:soft_converter/soft_converter.dart';\n\nFuture\u003cvoid\u003e main() async {\n  // The paths for the binaries are optional, if not defined\n  // SoftConverter will use the system path.\n  final converter = SoftVideoConverter();\n\n  try {\n    final files = await converter.toWEBM(\n      inputs: [File('assets/gradient.mp4')],\n      output: Directory('assets/'),\n    );\n\n    for (final file in files) {\n      print('Video file path: ${file.path}');\n    }\n  } catch (e) {\n    rethrow;\n  }\n}\n```\n\n## Credits\n\n- João Sereia [\\\u003cjoao.sereia@softyes.com.br\\\u003e](mailto:joao.sereia@softyes.com.br)\n- SoftYes TI [\\\u003csoftyes.com.br\\\u003e](https://softyes.com.br)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftyesti%2Fsoft_converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoftyesti%2Fsoft_converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftyesti%2Fsoft_converter/lists"}