Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (111)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6789)

  • 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 ?

  • How to change stream metadata with ffmpeg ?

    13 juillet 2012, par Igor Grinfeld

    I have many video files and part of it have wrong size, or at least ffmpeg reports wrong size.
    For example, ffmpeg prints :

    Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: mp42isom
       creation_time   : 2009-10-11 15:04:33
       encoder         : HandBrake 0.9.3 2008112300
    Duration: 01:47:42.18, start: 0.000000, bitrate: 663 kb/s
       Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 720x464 [
    SAR 43:36 DAR 215:116], 499 kb/s, 25 fps, 25 tbr, 48k tbn, 50 tbc
    Metadata:
       creation_time   : 2009-10-11 15:04:33
       handler_name    :
    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, s16, 159
    kb/s
    Metadata:
        creation_time   : 2009-10-11 15:04:33
        handler_name    :

    However, when I configure media player to play the file without resizing it has 860x464 size.

    I want to write scripts that will fix the files, but I don't know how to do that. I've updated to last ffmpeg version and tried to use -metadata:s:v:0 Video="...860x464...", as I read in ffmpegh doc, but it doesn't work.
    What is my mistake ?

  • ffmpeg, replace part of audio in mp4 video file

    8 octobre 2015, par user2903753

    I want to replace part of the audio in one mp4 file with part of another mp3 file using ffmpeg.
    this is what I’m trying to do :

       ffmpeg -i 2009.mp4 -i birds.mp3 -filter_complex "[0:a]atrim=end=45,asetpts=PTS-STARTPTS[aud1];[1:a]atrim=0:18,asetpts=PTS-STARTPTS[aud2];  [0:a]atrim=start=63,asetpts=PTS-STARTPTS[aud3]; [aud1][aud2][aud3]concat=n=3:v=0:a=1[aout]"  -map 0:v -map "[aout]" -c:v copy   output.mp4

    it is giving me this error :
    [NULL @ 000000000596e020] Unable to find a suitable output format for ’ffmpeg’
    ffmpeg : Invalid argument