
Recherche avancée
Autres articles (36)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (7894)
-
how to download m3u8 with ffmpeg ? [hls prompts : Unable to open key file skd:xxxxxxx] [closed]
18 octobre 2024, par Mam GhaghThere is a m3u8 manifest like :


#EXTM3U
#EXT-X-VERSION:5
#EXT-X-TARGETDURATION:7
#EXT-X-PLAYLIST-TYPE:VOD
#EXT-X-KEY:METHOD=SAMPLE-AES,URI="skd://xxxxxx",IV=0xXXXXXX,KEYFORMAT="com.apple.streamingkeydelivery",KEYFORMATVERSIONS="1"
#EXTINF:6,
https://someurl.com/index_1_0.ts
#EXTINF:6,
https://someurl.com/index_2_0.ts
...



which is available on https://someurl.com/my.m3u8

So, When I executed ffmpeg command

ffmpeg -i "https://someurl.com/my.m3u8" -c copy out.mp4

the following message appeared

[hls @ 000002de75f89bc0] Unable to open key file skd://xxxxxx

Now the question is, What is the key and How should I address it ?

-
lavfi/src_movie : remove frame from priv context
11 mai 2014, par Lukasz Mareklavfi/src_movie : remove frame from priv context
This variable is used only inside one function.
There is no need to store it in context.This also may prevent crush by double free frame.
Signed-off-by : Lukasz Marek <lukasz.m.luki2@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
avcodec/sgidec : Avoid redundant private context
29 septembre 2022, par Andreas Rheinhardtavcodec/sgidec : Avoid redundant private context
SGI is intra-frame only ; the decoder therefore does not
maintain any state between frames, so remove
the private context.Also rename depth to nb_components.
Reviewed-by : Tomas Härdin <git@haerdin.se>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>