Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (43)

  • 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

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

Sur d’autres sites (4683)

  • rtsp : Only interpret $ as interleaved packet indicator at the start of replies

    21 janvier 2015, par Martin Storsjö
    rtsp : Only interpret $ as interleaved packet indicator at the start of replies
    

    Allow $ as character anywhere within normal RTSP replies - both
    within the lines, and as the first character of RTSP header lines.
    (The existing old comment indicated that an inline packet could
    start at any line within a RTSP reply header, but that doesn’t
    sound valid to me, and I’m not sure if the existing code
    handled that correctly either.)

    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtsp.c
  • arm : vp9lpf : Interleave the start of flat8in into the calculation above

    10 janvier 2017, par Martin Storsjö
    arm : vp9lpf : Interleave the start of flat8in into the calculation above
    

    This adds lots of extra .ifs, but speeds it up by a couple cycles,
    by avoiding stalls.

    This is cherrypicked from libav commit
    e18c39005ad1dbb178b336f691da1de91afd434e.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/arm/vp9lpf_neon.S
  • Set correct start time of ts-file using ffmpeg

    9 octobre 2020, par Daniel

    I am splitting up a video into multiple 10 second ts-parts (mpeg-ts format) using ffmpeg on windows.

    &#xA;&#xA;

    To create the 2nd part (that starts at 10 seconds into the video and ends at 20 seconds into the video) :

    &#xA;&#xA;

    ffmpeg -i sample.avi -ss 00:00:10 -to 00:00:20 -vcodec libx264 -acodec aac -vf scale=426:-1 out1.ts&#xA;

    &#xA;&#xA;

    But when i check the file using ffprobe it says :

    &#xA;&#xA;

    Duration: 00:00:10.02, start: 1.458667, bitrate: 359 kb/s&#xA;

    &#xA;&#xA;

    So the duration is ok but the start time is incorrect. Is it anyway i can use ffmpeg to correct it to 00:00:20 ?&#xA;The best solution would of course to be able to set the correct start time in my first command where i take out the 10 second part but i would also be ok with running a 2nd command to fix the time.

    &#xA;&#xA;

    Is this possible ? Cant find any documentation and all examples i found are not for my exact problem and don't seem to work then i play around with them.

    &#xA;&#xA;

    Full output from ffprobe :

    &#xA;&#xA;

    ffprobe.exe out1.ts&#xA;ffprobe version git-2020-02-06-343ccfc Copyright (c) 2007-2020 the FFmpeg developers&#xA;  built with gcc 9.2.1 (GCC) 20200122&#xA;  configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt --enable-amf&#xA;  libavutil      56. 39.100 / 56. 39.100&#xA;  libavcodec     58. 68.100 / 58. 68.100&#xA;  libavformat    58. 38.100 / 58. 38.100&#xA;  libavdevice    58.  9.103 / 58.  9.103&#xA;  libavfilter     7. 74.100 /  7. 74.100&#xA;  libswscale      5.  6.100 /  5.  6.100&#xA;  libswresample   3.  6.100 /  3.  6.100&#xA;  libpostproc    55.  6.100 / 55.  6.100&#xA;Input #0, mpegts, from &#x27;out1.ts&#x27;:&#xA;  Duration: 00:00:10.02, start: 1.458667, bitrate: 359 kb/s&#xA;  Program 1&#xA;    Metadata:&#xA;      service_name    : Service01&#xA;      service_provider: FFmpeg&#xA;    Stream #0:0[0x100]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p(progressive), 426x260 [SAR 780:781 DAR 18:11], 25 fps, 25 tbr, 90k tbn, 50 tbc&#xA;    Stream #0:1[0x101]: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 131 kb/s&#xA;

    &#xA;