
Recherche avancée
Autres articles (29)
-
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (5386)
-
Recording transport stream to file in ffmpeg
9 juillet 2020, par Neil BernardI'm streaming a dvb-t mux and I want to dump it to file using ffmpeg on another PC.


Here is the command :


ffmpeg -i rtp ://192.168.1.93:20000 -acodec copy -vcodec copy d34_tw.ts


For some reason though its only saving 1 video and 1 audio random pid ? not the whole TS ?


Thoughts ?


Neil


-
avfilter/vf_idet : Fixing idet for single-frame inputs.
28 novembre 2014, par Neil Birkbeckavfilter/vf_idet : Fixing idet for single-frame inputs.
Handle single frame inputs similar to yadif (e.g., https://github.com/FFmpeg/FFmpeg/commit/0f9f24c9cfd291c7ece4d3bad64fdf06d107168a and https://github.com/FFmpeg/FFmpeg/commit/681e008d06d2241d50abe6316c908a184ddc5942)
Example :
ffmpeg -r 1 -t 1 -i fate-suite/ffmpeg-synthetic/vsynth1/%02d.pgm -vf idet,showinfo -f null -y /dev/nullPreviously :
Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)
[Parsed_idet_0 @ 0x36389d0] Repeated Fields : Neither : 0 Top : 0 Bottom : 0After patch :
[Parsed_showinfo_1 @ 0x1909810] n:0 pts:0 pts_time:0 pos :-1 fmt:gray sar:0/1 s:352x432 ...
[Parsed_idet_0 @ 0x18f9bb0] Repeated Fields : Neither : 1 Top : 0 Bottom : 0Fate looks good.
Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
libavutil/mastering_display_metadata.h : change fields to be rationals as this is...
26 janvier 2016, par Neil Birkbecklibavutil/mastering_display_metadata.h : change fields to be rationals as this is how they are typically coded.
(this structure is not referenced anywhere yet)
Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>