
Recherche avancée
Autres articles (58)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (6886)
-
Revision 96808 : Le plug n’est que pour spip 3.1 donc, je monte les version mini des ...
25 avril 2016, par spip.franck@… — LogLe plug n’est que pour spip 3.1 donc, je monte les version mini des "necessite" et "utilise" au première version compatible spip 3.1 car ce n’est pas possible d’avoir des bornes mini plus petite.
Ce commit ne change rien au plugin, mais ainsi ceux qui consultent le xml sur plugin.spip ont une information fiable
http://zone.spip.org/trac/spip-zone/browser/_plugins_/saisies/trunk/paquet.xml?rev=86449
http://zone.spip.org/trac/spip-zone/browser/_plugins_/champs_extras/core/trunk/paquet.xml?rev=85878
http://zone.spip.org/trac/spip-zone/browser/_plugins_/verifier/paquet.xml?rev=85813
http://zone.spip.org/trac/spip-zone/browser/_squelettes_/zpip-dist/branches/zpip_v1/plugin.xml?rev=86098
http://zone.spip.org/trac/spip-zone/browser/_core_/tags/spip-3.1.0/plugins/mediabox/paquet.xml
http://zone.spip.org/trac/spip-zone/browser/_plugins_/pages/trunk/paquet.xml?rev=85669
http://zone.spip.org/trac/spip-zone/browser/_plugins_/notifications/trunk/paquet.xml?rev=86486
http://zone.spip.org/trac/spip-zone/browser/_plugins_/openid/trunk/paquet.xml -
Anomalie #2379 (Fermé) : sql_updateq() et base externe / problème de description_table() [+mini-pa...
23 octobre 2011, par gvincent -Salut, sous SPIP2.1 rev.18614 j’ai un problème détecté lors de l’utilisation de sql_updateq() sur une base externe. description_table() ne prend pas en compte la base et donc ne trouve pas d’infos pour faire la mise à jour. D’où mon patch ci-dessous pour que ça fonctionne : Index : req/mysql.php (...)
-
Extract specific frames of youtube video without downloading video
22 janvier 2023, par Kashish AroraI need to extract specific frames of an online video to work on an algorithm but I don't want to download the whole video because that would make it highly inefficient.


For starters, I tried working with youtube videos. I can download whole of the video using
youtube-dl
in this way :

ydl_opts = {'outtmpl': r'OUTPUT_DIRECTORY_HERE',}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
 ydl.download([url])



And then I can capture individual frames.


I need to avoid downloading the whole video. After some research, I have found that
ffmpeg
might help me do this. I found no way to download just the frames so if this is not possible, the second option is that I can download specific portions of the video. One such example in linux is here but I couldn't find any solution for python.

What is a good way to download just the frames, or portions of videos (in python) without downloading the entire thing ?