
Recherche avancée
Autres articles (68)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (7489)
-
How Can i Download this video ? Encrypted m3u8 ?
16 septembre 2022, par אורן NOHello everyone For almost a whole month now I have been trying to download a file from a specific site


This is the link to the video
https://www.karaoke.co.il/api_play.php?type=clip&id=58370&autoplay=undefined&referer=karaoketv


The M3u8 files are split into 2 parts.


Video file
https://www.video-cdn.com/video/encrypt/750802ea0bc2d02fac93adeaa1398ec2/750802ea0bc2d...2-57d9518fae69


And an audio file
https://www.video-cdn.com/video/encrypt/750802ea0bc2d02fac93adeaa1398ec2/750802ea0bc2d...2-57d9518fae69


As far as I know there is a Key that needs to be entered in order to download the file.


And when I run the command in ffmpeg


I encounter many errors like :
Unable to open key file


Anyone who can download it.
I would be very happy if he would write me a code that works and explain to me how to do it


These are all the codes I have already tried


ffmpeg -decryption_key https://www.video-cdn.com/video/key/750802ea0bc2d02fac93adeaa13cde64 -i https://www.video-cdn.com/video/encrypt/750802ea0bc2d02fac93adeaa1398ec2/750802ea0bc2d02fac93adeaa1398ec2/video_720p.m3u8?token=R915dD-72351a7c-3dd1-4e58-b6c2-9cc813eeb183 -vcodec libx264 {output_file}



ffmpeg -decryption_key key -i file -max_muxing_queue_size 9999 d.mp4


ffmpeg -allowed_extensions ALL -protocol_whitelist data, file, http, https, tcp, tls, crypto -i "https://www.video-cdn.com/video/encrypt/f242d2da41d03b3955fb866efc5dbd59/f242d2da41d03b3955fb866efc5dbd59/video_720p.m3u8?token=R915dD-a1430cfc-0bda-46a0-a7e9-b15308875dc7" c copy -bsf : a aac_adtstoasc test.mp4 -decryption_key C :\ ffmpeg\enc.key


hlsdl -K "1a9625fb34a4afe0d5446138e9543563" https://www.video-cdn.com/video/encrypt/f242d2da41d03b3955fb866efc5dbd59/f242d2da41d03b3955fb866efc5dbd59/video_720p.m3u8?token=R915dD-be07b7e6-08aa-441b-afbd-5c7876409878




-
avformat/segment : always use interleaved writes for formats with custom interleaving
1er avril 2020, par Marton Balint -
docker service create : How to deal with custom or unknown parameter needed by linuxserver/ffmpeg image ?
24 mai 2022, par MikeI am new to docker and docker swarm and started dockerizing several services and am trying to get them running as docker swarm services. I ran into a road block with the linuxserver/ffmpeg image :


- 

- it uses a —device parameter which is not implemented in create service
- it expects several custom parameters to pass them to the ffmpeg encoder






From my research up to now I assume that passing parameters is not implemented in docker create service, but maybe you can think of a workaround ? (unfortunately the image does not process environment variables, or at least they are not documented)


This is how I start dockerized ffmpeg (working fine in standalone mode) :


docker run -d /

—network="host" /

—device=/dev/video0 :/dev/video0 / ### error : unknow flag

—name ffmpeg_streamer /

—restart always -it /

-v $(pwd)/video :/video /

linuxserver/ffmpeg / ### custom parameters below here

-stream_loop /

-1 -re -nostdin /

-i "/video/test.avi" /

-f pulse /

-vcodec libx264 /

-preset:v veryfast /

-b:v 400k /

-f flv rtmp ://localhost:1935/live/streamkey

Many thanks for looking into this !