Recherche avancée

Médias (91)

Autres articles (34)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10745)

  • Cropping black bars in video with ffmpeg on ubuntu changes video size

    9 décembre 2013, par pramod

    I have a source video size that's 720x576 with black rectangles on the top and bottom.

    I want to remove the black rectangles and set the output video size to 640x352.

    I tried -vf cropdetect and the value it gave was 640:192:0:80.

    However, putting that same value in crop=<parameter></parameter> changes the output video size.

    How can I fix this ?

    E.g. :

    ffmpeg -i all_the_best_test.mpg -s 640x352 -deinterlace -b 500k -minrate 500k \
    -maxrate 500k -aspect 1.82 -force_fps -vcodec libx264 -me_method 10 \
    -vf crop=640:192:0:80 -r 25 -acodec libfaac -ac 2 -ar 44100 -ab 96k -subq 6 \
    -vpre medium /vod/Movies/final/allthebest-crop-2.mp4
  • How to download videos from m3u8 that has sample-aes encryption [closed]

    8 mai 2021, par Rajat Bisht

    I am trying to download my online lecture from m3u8 link but it shows "ffmpeg do not support sample-aes yet".&#xA;Link of lecture : https://pw.pc.cdn.bitgravity.com/b7826d86-612d-4ef2-b17c-cc4f91d9584c/master.m3u8 .&#xA;It is sample-aes-ctr encrypted. Also I know python a little bit so it would be better if I could download it using python. Also I have link to mpd file : https://pw.pc.cdn.bitgravity.com/b7826d86-612d-4ef2-b17c-cc4f91d9584c/master.mpd.&#xA;Please can anyone tell any module or something which can help in downloading it.....&#xA;Thanks in advance.

    &#xA;

  • ffmpeg - less frames getting extracted than expected

    20 juin 2021, par Vrajesh Doshi
    &#xA;

    ffmpeg -i instagram.mp4 -vf fps=29.97 thumb%06d.jpg -hide_banner

    &#xA; &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'instagram.mp4' : Metadata :&#xA; major_brand : isom&#xA; minor_version : 512&#xA; compatible_brands : isomiso2avc1mp41&#xA; encoder : Lavf55.19.104 Duration : 00:00:13.61, start : 0.000000, bitrate : 1163 kb/s&#xA; Stream #0:0(und) : Video : h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 640x640 [SAR 1:1 DAR 1:1], 1099 kb/s, 29.97 fps,&#xA; 29.97 tbr, 11988 tbn, 59.94 tbc (default)&#xA; Metadata :&#xA; handler_name : VideoHandler&#xA; Stream #0:1(und) : Audio : aac (LC) (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 64 kb/s (default)&#xA; Metadata :&#xA; handler_name : SoundHandler Stream mapping : Stream #0:0 -> #0:0 (h264 (native) -> mjpeg (native)) Press [q] to stop, [?] for help [swscaler @ 0x55b2b53cf440] deprecated pixel format used, make sure&#xA; you did set range correctly Output #0, image2, to 'thumb%06d.jpg' :
    &#xA; Metadata :&#xA; major_brand : isom&#xA; minor_version : 512&#xA; compatible_brands : isomiso2avc1mp41&#xA; encoder : Lavf57.83.100&#xA; Stream #0:0(und) : Video : mjpeg, yuvj420p(pc), 640x640 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 29.97 fps, 29.97 tbn, 29.97 tbc (default)&#xA; Metadata :&#xA; handler_name : VideoHandler&#xA; encoder : Lavc57.107.100 mjpeg&#xA; Side data :&#xA; cpb : bitrate max/min/avg : 0/0/200000 buffer size : 0 vbv_delay : -1 frame= 405 fps=231 q=24.8 Lsize=N/A time=00:00:13.51 bitrate=N/A speed=7.72x video:5961kB audio:0kB subtitle:0kB other streams:0kB&#xA; global headers:0kB muxing overhead : unknown

    &#xA;

    &#xA;&#xA;

    The video duration is 13.61 seconds and frame rate is 29.97. So I was expecting 13.61 * 29.97 = 407.8917 i.e. 407 frames. But have got 405 frames. I am new to ffmpeg, need help to correctly get all 407 frames.

    &#xA;&#xA;

    I had also tried following command,

    &#xA;&#xA;

    ffmpeg -i instagram.mp4 thumb%06d.jpg -hide_banner&#xA;

    &#xA;&#xA;

    but the output was same 405 frames.

    &#xA;&#xA;

    Possibly the start 2 frames are missing.

    &#xA;&#xA;

    I need to display the frames generated in the base video timeline. And on clicking on the frame I need to exactly seek the video to the frame position using HTML5 currentTime. Since the first 2 frames are not getting available, exact mapping is not getting possible.

    &#xA;&#xA;

    Please guide.

    &#xA;