
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (42)
-
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 (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
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 (...)
Sur d’autres sites (7231)
-
Merge commit ’70daeacd6ef8b354dd7d2d77ad393831a5bbf033’
28 mars 2014, par Michael NiedermayerMerge commit ’70daeacd6ef8b354dd7d2d77ad393831a5bbf033’
* commit ’70daeacd6ef8b354dd7d2d77ad393831a5bbf033’ :
PAF demuxer and decoderConflicts :
Changelog
doc/general.texi
libavcodec/avcodec.h
libavcodec/codec_desc.c
libavcodec/paf.c
libavcodec/version.h
libavformat/Makefile
libavformat/allformats.c
libavformat/paf.c
libavformat/version.hSee : 7de4a16508cb9bd2d40855f7114dea14329ef62a, and others
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
lavf : Add DSS demuxer
13 février 2015, par Oleksij Rempellavf : Add DSS demuxer
Signed-off-by : Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com> -
FFMPEG loses drop frame flag when converting from 29.97 mov to mp4
18 décembre 2018, par dementisI’ve got a 29.97 drop frame video, proven with the mediainfo output lines
framerate: 29.97
andDelay_DropFrame: Yes
. I want to convert it to an mp4.Running
ffmpeg -i INPUT.mov -y -b:v 1500k -vcodec libx264 -vf scale=640:-1 -pix_fmt yuv420p -movflags +faststart -strict -2 OUTPUT.mp4
yields a non-drop frame video. When I run mediainfo against the new file, I can see that the framerate is still 29.97, but there is no indication of drop frame anymore.
This also happens when i run the above outputting an mov, and also when i runffmpeg -i INPUT.mov OUTPUT.mov
, so i think it’s purely in the conversion where the data is being lost.One lead i’m following is that mediainfo outputs 3 sections for the original mov, [General], [Video], [Other], while my new mp4 only outputs [General] and [Video].
My FFMPEG version is 3.4.1
Any ideas ?