Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (44)

  • 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 (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (2325)

  • FFMpeg : Remove duplicate frames AND maintain interlaced field order

    9 novembre 2017, par Meiereika

    I have a video file that contains duplicate frames every 2-3 seconds.

    I was able to remove those redundant frames with the following command line :

    ffmpeg -i input.mp4 -vf mpdecimate,setpts=N/FRAME_RATE/TB out.mp4

    However, at the same time the video was also transcoded into a progressive clip rather interlaced (just like the original file).
    How can I force FFmpeg to maintain the interlaced structure, while at the same time removing the duplicate frames ?

    I’m totally new to FFMpeg and have no clue about command lines and all that stuff.
    Maybe you could just help me out with the right code ?

    Thanks,
    Daniel

  • cosmetics : Place arch initialization calls in alphabetical order

    20 août 2013, par Diego Biurrun
    cosmetics : Place arch initialization calls in alphabetical order
    
    • [DBH] libavcodec/dsputil.c
    • [DBH] libavcodec/rv40dsp.c
    • [DBH] libavcodec/vc1dsp.c
    • [DBH] libavcodec/vorbisdsp.c
    • [DBH] libavcodec/vp8dsp.c
    • [DBH] libswscale/yuv2rgb.c
  • How to merge list of videos with frame specifiec order using ffmpeg ?

    9 décembre 2015, par Il'ya Zhenin

    I have a list of files :

    even_0.avi
    odd_0.avi
    even_1.avi
    odd_1.avi
    ...
    even_n.avi
    odd_n.avi

    And I want to merge them in a single video file in such a way, that zero frame would be taken from even_0.avi, first frame from odd_0.avi, second - from even_0.avi and so on.

    And if all frames in even_0.avi are taken, then next frame we will take from even_1.avi, next from odd_0.avi, next again from even_1.avi. Basically, when one video ends, we just start taking frames from the next video with prefix "even_" or "odd_".

    I just started using ffmpeg, know, how to simply merge videos, change resolution, fps and so on, but this is beyond my power, so, please, help.