Recherche avancée

Médias (91)

Autres articles (102)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6254)

  • ffmpeg smooth video upscaling

    21 janvier 2013, par bbbonthemoon

    I've got some old videos in 320x240 that I want to upscale to 640x480

    DISCLAIMER : I know upscaling always ruins quality.

    My problem is that, "regular" upscaling options in ffmpeg(-s or scale filter) always give much worse results comparing to manual resizing in any media player when watching video(Resize 2:1 option in Ubuntu's Movie Player for example). So, it's clear that there are better algorithms, which are used by the player to upscale the video. I just dont know how ta make ffmpeg use them, I'm newbie video converter :-) I need your help with converting options for ffmpeg for smooth as possible upscale.
    Thanks in advance !

  • How to open MIL avi video file

    15 février 2017, par ahme0307

    I have some (AVI) videos with MIL(Matrox Imaging Library) codec. I have tried multiple codecs but i am not able to open.
    I have tried VLC, K-lite codecs,ffmpeg, here is the log file from k-Lite

    >##LAV Splitter Source (internal)::Video
    >
    >Media Type 0:
    >--------------------------
    >Video: MIL  256x256 5fps 489kbps
    >AM_MEDIA_TYPE:
    >majortype: MEDIATYPE_Video {73646976-0000-0010-8000-00AA00389B71}
    >subtype: Unknown GUID Name {204C494D-0000-0010-8000-00AA00389B71}
    >formattype: FORMAT_VideoInfo {05589F80-C356-11CE-BF01-00AA0055595A}
    >bFixedSizeSamples: 0
    >bTemporalCompression: 1
    >lSampleSize: 1
    >cbFormat: 128
    >
    >VIDEOINFOHEADER:
    >rcSource: (0,0)-(256,256)
    >rcTarget: (0,0)-(256,256)
    >dwBitRate: 489508
    >dwBitErrorRate: 0
    >AvgTimePerFrame: 2000000
    >
    >BITMAPINFOHEADER:
    >biSize: 80
    >biWidth: 256
    >biHeight: 256
    >biPlanes: 1
    >biBitCount: 24
    >biCompression: MIL
    >biSizeImage: 196608
    >biXPelsPerMeter: 0
    >biYPelsPerMeter: 0
    >biClrUsed: 0
    >biClrImportant: 0
    >
    >pbFormat:
    >
    >

    I also tried ffplay and here is the output
    enter image description here

    The only software i came across that can open this video is from Matrox and it doesn’t allow exporting to other formats
    enter image description here
    I appreciate if some one can direct me to codecs that can handle this videos. I would like convert to other video formats for further processing.

    Edit :
    I have attached sample video here
    sample

    I also tried the latest ffmpeg

  • Ffmpeg : Output a video made of several video chunks of the input video

    20 mai 2013, par mad

    I was wondering if it was possible to output a video made of several extracts of the input video.
    For example outputting a video made of the first 10s of each minute of the input.

    I know you can do it programmatically, calling several time ffmpeg with -ss and -t to make the chunks and then merge them, but is it possible to do it in one command using video filters ?

    Thanks !