Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (60)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

  • How to decompress a compressed type audio file using ffmpeg ?

    28 janvier 2017, par iPhoneDev

    I need to decompress an audio file through code using ffmpeg.
    I have compiled FFMPEG for iOS with the link : http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-October/076618.html

    Now I am not getting how to include ffmpeg in my xcode project ? Which ffmpeg libraries to use ?
    Which methods to use for decompresson ?

    Please answer.

  • How do I subtract a word from the output in bash

    23 octobre 2012, par user1768840

    I made a simple bash script to convert movies from .avi to .mp4 but now I want to do two more things.

    1. Have the output file have only *.mp4 rather than *.avi.mp4
    2. Delete the old file after the conversion is completed.

    Here is my script.

    #!/bin/bash


    avconv -i "$1" -c:v libx264 -c:a copy -sn -crf 24 "$1".mp4
  • ffmpeg usage to encode a video to H264 codec format

    20 août 2015, par goldenmean

    I have a *.mp4 video file(MPEG4 video codec) and I am trying to convert this to a H264 video codec format(raw h.264 format) using ffmpeg on Linux(Version - FFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1, Copyright (c) 2000-2009 Fabrice Bellard,) using command line as shown below,

    ffmpeg -i input .mp4 output.h264

    but I get an error saying -

    Unsupported codec for output stream #0.0

    Then when i try this option :

    ffmpeg -i input .mp4 -formats h264 output.h264

    it still does not work, and gives -

    Seems stream 0 codec frame rate differs from container frame rate: 59.94 (5994/100) -> 29.97 (30000/1001)
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'Rapture.mp4':
     Duration: 00:02:06.44, start: 0.000000, bitrate: 26574 kb/s
       Stream #0.0(eng): Video: h264, yuv420p, 1920x1080, 29.97 tbr, 29.97 tbn, 59.94 tbc
       Stream #0.1(eng): Audio: aac, 48000 Hz, stereo, s16

    And then it prints out help on the formats which we get when we do ffmpeg -formats

    When I checked the help, ffmpeg -formats, I see below information related to H264 file format and codec :

    File format :

    DE h264            raw H.264 video format

    Codecs:

    D V D  h264         H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10

    My questions :

    1. How can I convert the video to a H264 encoded video (raw H264 video format)

    2. When I do ffmpeg -formats, I see many acronyms for the codecs supported, I see many acronyms before the codec name/type such as - D V D S E A, what do they stand for ?

    3. How to use the ffmpeg options -vcodec and -formats ?