Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (70)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5191)

  • FFMpeg hello world failed

    13 mai 2014, par xorange

    I’m new to the ffmpeg development.

    I’ve got my ffmpeg via ffmpeg.mplayerhq.hu/download.html using

      `git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg`

    My OS is Win7. I’m using Cygwin to help me work under a Unix-like environment.

    I’m using tutorial code from http://dranger.com/ffmpeg/ffmpeg.html. My current code is Tutorial01.

    So I’ve got my gcc, ffmpeg and code together. Working directory is /ffmpegDemo,

    code : /ffmpegDemo/tutorial01.c

    ffmpeg : /ffmpegDemo/ffmpeg

    And I use command gcc-I ffmpeg -o t01 tutorial01.c to compile my code.
    (cygwin doesn’t support "copy", here’re just some major message :)

    libavutil/avconfig.h : No such file or directory

    ...

    error : ’CODEC_TYPE_VIDEO’ undeclared

    ...

    and others are just warnings.

    Indeed, there’s no avconfig.h under ffmpeg/libavutil. I’ve looked for ’CODEC_TYPE_VIDEO’, here’s this reference : http://cekirdek.pardus.org.tr/ ismail/ffmpeg-docs/avcodec_8h.html says that ’CODEC_TYPE_VIDEO’ is defined in libavcodec/avcodec.h. I’ve checked avcodec.h and didn’t find any.

    I was very confused about this error and confused about all the "configure" and "make" things that I saw while searching for answer. Am I doing it wrong ? Did I miss some steps ? Hope that I could find an answer here.

    Thanks.

  • lavc/dxv : Support more real-world old version samples.

    8 septembre 2015, par Carl Eugen Hoyos
    lavc/dxv : Support more real-world old version samples.
    
    • [DH] libavcodec/dxv.c
  • Do any 'sub_charenc' libraries support smart/curly quotes ?

    23 août 2016, par offandennui

    We’re attempting to batch process a large number of files to burn .srt subtitles with their video pairs.

    ffmpeg -i input.mp4 -vf "subtitles=input.srt:force_style='Fontsize=20,Borderstyle=3:charenc=CP1252'" output.mp4

    has worked for us in the past, but we were just delivered a batch of SRTs with smart/curly quotes peppered throughout (which, aren’t supported by any of the parameters we’ve tried). Is there a specific parameter we can use here ?

    Thanks in advance !