Recherche avancée

Médias (91)

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10834)

  • vf_colorspace : Add support for full range yuv

    26 août 2016, par Vittorio Giovara
    vf_colorspace : Add support for full range yuv
    

    Whenever a full range video is input, since the YUVJ* formats are not
    listed as supported for this filter, a range reduction takes place
    through the auto-inserted format filter, forcing the conversion to
    operate on a limited range,

    However the filter handles full range videos perfectly fine, so adding
    support to YUVJ* formats will allow skipping a conversion step, while
    providing completely identical results.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>
    Reviewed-by : "Ronald S. Bultje" <rsbultje@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_colorspace.c
  • ffmpeg is cutting video length incorrectly

    1er mars 2018, par jameshwart lopez

    I use ffmpeg to check the length of the video and to cut video.

    I have a video with the lenght of 19.458333 seconds that’s why i want to cut it to only have 19 seconds because i don’t want the floating point.

    I check the video length using below command

    ffprobe -i "video.avi" -show_entries format=duration -v quiet -of csv="p=0"

    And I use below command to cut video the video

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 00:00:19.000 -c copy out.mp4

    or

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 19 -c copy output.avi

    The problem i have is when i cut the video with the above command and check the length the output file’s length is 19.018 seconds. Can someone help me with this problem ?

  • FFmpeg-generated .m2v file shows strange video length

    15 août 2016, par John Doe 2

    I created a .m2v file using ffmpeg like this :

    ffmpeg -framerate 1/300 -s 720x576 -i img%3d.jpg -c:v mpeg2video -b:v 2000k -r 5 video.m2v

    This worked successfully, but if I right click on the .m2v file and go to details and scroll to video length I get this information which is really strange ( Using Windows 10) :

    Video

    Length: 256204778:48:05

    If I run the .m2v file with a program like PowerDVD the length of the video is 5 minutes long.

    Why does this happen ?