Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (38)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (7289)

  • Return files for all file inputs of the given jQuery object. Fixes #1678.

    14 septembre 2012, par Sebastian Tschan

    m js/jquery.fileupload.js Return files for all file inputs of the given jQuery object. Fixes #1678. If the given file input doesn’t have an associated form, use the default widget file input’s form.

  • How to extract raw YUV files from MPEG2 TS file ?

    11 septembre 2012, par Wang Wei

    I have a 1920x1080 mpeg2 .ts file. I need to get the raw YUV files for each frame.
    I tried ffmpeg but no luck. I end up with many small files. I expect each frame to be 1920x1080x1.5 = 3110400 Bytes.

    [root@dwarch frames]# ffmpeg -i video.ts -f image2 foo-%03d.yuv
    FFmpeg version git-N-28713-g65daa94, Copyright (c) 2000-2011 the FFmpeg developers
     built on Mar 30 2011 09:20:16 with gcc 4.6.0
     configuration: --prefix=/usr --enable-gpl --enable-libmp3lame --enable-libvorbis --enable-libfaac --enable-libxvid --enable-libx264 --enable-libvpx --enable-libtheora --enable-postproc --enable-shared --enable-x11grab --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libschroedinger --enable-libopenjpeg --enable-version3 --enable-nonfree --enable-runtime-cpudetect --disable-debug
     libavutil    50. 40. 0 / 50. 40. 0
     libavcodec   52.116. 0 / 52.116. 0
     libavformat  52.104. 0 / 52.104. 0
     libavdevice  52.  4. 0 / 52.  4. 0
     libavfilter   1. 76. 0 /  1. 76. 0
     libswscale    0. 13. 0 /  0. 13. 0
     libpostproc  51.  2. 0 / 51.  2. 0
    Input #0, mpegts, from 'video.ts':
     Duration: 00:04:51.58, start: 0.333333, bitrate: 36041 kb/s
     Program 10
       Stream #0.0[0x20]: Video: mpeg2video (Main), yuv420p, 1920x1080 [PAR 1:1 DAR 16:9], 35000 kb/s, 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc
       Stream #0.1[0x21]: Audio: ac3, 48000 Hz, 5.1, s16, 224 kb/s
    Incompatible pixel format 'yuv420p' for codec 'mjpeg', auto-selecting format 'yuvj420p'
    [buffer @ 0x97148c0] w:1920 h:1080 pixfmt:yuv420p
    [setdar @ 0x9714df0] a:16/9
    [setdar @ 0x9714df0] auto-inserting filter 'auto-inserted scaler 0' between the filter 'src' and the filter 'Parsed filter 0 setdar'
    [scale @ 0x9711db0] w:1920 h:1080 fmt:yuv420p -> w:1920 h:1080 fmt:yuvj420p flags:0x4
    [setdar @ 0x9714df0] w:1920 h:1080 -> dar:16/9 sar:1/1
    Output #0, image2, to 'foo-%03d.yuv':
     Metadata:
       encoder         : Lavf52.104.0
       Stream #0.0: Video: mjpeg, yuvj420p, 1920x1080 [PAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 90k tbn, 23.98 tbc
    Stream mapping:
     Stream #0.0 -> #0.0
  • ffmpeg Merge 2 audio files in a previus audio file

    26 novembre 2012, par George L.

    i have the following code to extract all audio from an avi file :

    exec("/usr/local/bin/ffmpeg -i sample.avi -ab 160k -ac 2 -ar 44100 -vn allaudio.mp3");

    Now it is my guide audio file and i want to add 2 more .mp3 files on it but i want the first audio file to starts in sixth second and the second audio file starts play in 20 second and all these to save it as a new audio filanl file.

    Is it possible to do it with ffmpeg ?