Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (31)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5922)

  • How to compare/show the difference between 2 videos in ffmpeg ?

    25 janvier 2016, par polarka

    I am a newbie at encoding. I have read and tried x264 in lossless mode (-qp 0), however I’d like to make sure that in my new video, every single pixel contains the same information as the source file (which is in YUV 420 so the loss of color conversion is avoidable, as far as I know). I want to be able to check that, because I don’t believe in that if someone just says its lossless.

    I welcome answers suggesting other codecs for lossless encoding, my only requirements for codecs are having one of the best compression rate and let me to pick different calculation times (such as the range from placebo to veryfast in x264) in order to adjust the compression level and calc time to my needs. But keep in mind that the original question is about how can I calculate the differences frame by frame of two videos and export it to a 3rd file, so I can watch it myself. I think that knowledge (if its possible and doesnt have serious limitations) will be useful for me in the future too.

  • Revision bb214efcb9 : Update PATENTS to reflect s/VP8/WebM/g Sync with http://www.webmproject.org/lic

    11 août 2014, par Lou Quillio

    Changed Paths :
     Modify /PATENTS


     Modify /third_party/libwebm/PATENTS.TXT



    Update PATENTS to reflect s/VP8/WebM/g

    Sync with http://www.webmproject.org/license/additional/

    modified : PATENTS
    modified : third_party/libwebm/PATENTS.TXT

    Change-Id : I97fc588589654c83c6cb7e2e2b909f23a370db8a

  • ffmpeg "select" filter not working with MPEG-4 and "-vcodec copy"

    5 novembre 2013, par Simone Palazzo

    I have an MPEG-4 video, which mediainfo describes as :

    Format                                   : MPEG-4
    Format profile                           : Base Media
    Codec ID                                 : isom
    Overall bit rate                         : 6 772 Kbps
    Writing application                      : Lavf54.6.100

    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : High@L4.1
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 4 frames
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Bit rate                                 : 25.0 Mbps
    Frame rate mode                          : Constant
    Frame rate                               : 29.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.554
    Stream size                              : 500 MiB (98%)
    Writing library                          : x264 core 125
    Encoding settings                        : cabac=1 / ref=3 / deblock=1:0:0 /     nalyse=0x3:0x113 / me=hex / subme=7 / psy=1 / psy_rd=1.00:0.00 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-2 / threads=12 / lookahead_threads=2 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=0 / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=1 / b_bias=0 / direct=1 / weightb=1 / open_gop=0 / weightp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=abr / mbtree=1 / bitrate=25000 / ratetol=1.0 / qcomp=0.60 / qpmin=0 / qpmax=69 / qpstep=4 / ip_ratio=1.40 / aq=1:1.00

    (I removed some useless information)

    What I'd like to do is remove the first, say, 200 frames from the video.

    However, if I try with ffmpeg (version 0.11.1, compiled from source)

    ffmpeg -i video.mp4 -vf select='gte(n\,200)' -vcodec copy -strict -2 out.mp4

    it doesn't work, the frames are exactly the same. If I remove the -vcodec copy part, what happens is that the first 190 frames are all the same (equal to the 190th one) ; so, they're not removed, but replaced with the 190th one.

    If I try the select filter to extract single images from the video, with

    ffmpeg -i video.mp4 -vf "select=gte(n\,200)" %d.jpg

    it works alright.

    Does anybody have an idea why this happens ?

    Thank you !