
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
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)
-
Extracting CEA-708 closed captions from MPEG-TS stream with FFmpeg
20 août 2021, par BradI have an MPEG-TS stream delivered over HTTP from an ATSC 1.0 receiver :


Input #0, mpegts, from 'http://example.com/stream':
 Duration: N/A, start: 33532.329189, bitrate: N/A
 Program 3
 Stream #0:0[0x31]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p(tv, top first), 1920x1080 [SAR 1:1 DAR 16:9], Closed Captions, 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
 Side data:
 cpb: bitrate max/min/avg: 15836400/0/0 buffer size: 7995392 vbv_delay: N/A
 Stream #0:1[0x34](eng): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, 5.1(side), fltp, 384 kb/s
 Stream #0:2[0x35](spa): Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, fltp, 128 kb/s (visual impaired)



How can I extract its closed caption data ?


I've read that for files, I can use lavfi :


ffmpeg -f lavfi -i movie=input.ts[out+subcc] ...



However, this doesn't work for streams over HTTP. At least, I can't figure out how to properly escape/quote the URL for use in the lavfi input syntax.


Any suggestions ?


-
ffmpeg drawtext filter not found [closed]
3 octobre 2023, par SonjaI have been trying to add frame numbers to my video using ffmpeg :


./ffmpeg -i VideoFileNameIN.mp4 -crf 10 -vf "drawtext=fontfile=/Library/Fonts/Arial.ttf: text='%{frame_num}': x=(w-tw)/2: y=h-(2*lh): fontcolor=black: fontsize=20: box=1: boxcolor=white: boxborderw=5" -c:a copy VideoFileNameOUT.mp4



...but when I run it it says :


No such filter: 'drawtext' 
Error initializing a simple filtergraph
Error opening output file
Error opening output files: Filter not found



All my files are in the downloads folder.
Any suggestions ?


-
Non monotonically increasing dts to muxer in stream 1 [closed]
12 avril 2013, par Bill HumptonI have an error with 1gb videofile and avconv
Application provided invalid, non monotonically increasing
dts to muxer in stream 1: 177873 >= 177849
av_interleaved_write_frame(): Invalid argumentI use
avconv -i /root/video/112-1.wmv -y -strict experimental -b:v 1800K -ss 00:00:10 -c:v libx264 -c:a libfaac -ar 44100 -ac 1 -b:a 128k -threads 0 -maxrate 1850k -bufsize 1000k -vf "scale=w=1280:h=720, drawtext=fontfile=FreeSans.ttf:text='site.com':fontcolor=white@1.0:fontsize=20:x=1130:y=695" /root/converted/112-1.wmv
Here is my log http://pastebin.com/BwBmVMDs
I tried to suppress b-frames by adding -bf 0 option, but also same error.
How can I avoid this error ?