
Recherche avancée
Autres articles (75)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (3563)
-
How to download HLS audio in Android [closed]
16 juillet 2022, par MayurI would like to download HLS audio stored in my server using Exoplayer or any other mechanism.. Also once the audio is downloaded I would like to encrypt it.


Can anyone please tell me how do I achieve it. I have read most of the article but could not find any help.


I would like to tell the person who has closed the question, I am asking the question as I need a bit help in it and I believe my question is clearly understandable. So even if you can't come forward and answer the questions to support a developer, atleast you must allow others to answer who can have any idea on it, instead of closing it.


-
Extract closed captions VTT from stream using ffmpeg
15 avril 2021, par EK0I can extract closed caption information from an mp4 file using ffmpeg v. 3.4.7 thus :


ffmpeg -f lavfi -i movie="sample.mp4[out+subcc]" -map 0:1 -c:s webvtt /tmp/output.vtt



The file was obtained by capturing a live HLS stream containing closed captions. I would like to extract the closed captions directly from the stream, instead after storing the video in a file. I've tried various things, including :


ffmpeg -f lavfi -i movie="http://example.com/stream.m3u8[out+subcc]" -map 0:0 -c:s webvtt /tmp/output.vtt



But the movie filter does not recognize the URL, even though the ffmpeg filter documentation says that the file name for the movie filter is "not necessarily a file ; it can also be a device or a stream accessed through some protocol" :




[Parsed_movie_0 @ 0x264ad80] Failed to avformat_open_input 'http'

[lavfi @ 0x2647e80] Error initializing filter 'movie' with args 'http://example.com/stream.m3u8' ;

movie=http://example.com/stream.m3u8[out+subcc] : No such file or directory



When I capture the video form the stream like this :


ffmpeg -i http://example.com/stream.m3u8 /tmp/output.mp4



ffmpeg reports that the stream does contain closed captions (which is where the captured video file sample.mp4 got them) :




Stream #0:0 : Video : h264 (High) ([27][0][0][0] / 0x001B), yuv420p(tv, bt709), 480x270 [SAR 1:1 DAR 16:9], Closed Captions, 14.99 fps, 14.99 tbr, 90k tbn, 29.97 tbc




Is it possible to do this ? Thanks for any pointers.


-
Frame Number Overlay With FFmpeg [closed]
12 mars 2013, par Kobi VersanoI need to overlay the frame number to each frame of a video file using ffmpeg for windows.
I succeeded in overlaying a timecode stamp with the
drawtext
filter using this code :ffmpeg -i video.mov -vcodec r210 -vf "drawtext=fontfile=Arial.ttf: timecode='01\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000099" -y output.mov
However, I need a frame number overlay and not a timecode one. Any help would be appreciated.