Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9043)

  • PHP : Video file is located in s3, need to find duration a video using getid3 php module

    14 mars 2019, par kaliyappan
       $request = $s3Client->createPresignedRequest($cmd, '+20 minutes');
       echo $presignedUrl = (string)$request->getUri();

       echo "\n";
       //$mp3File = '/home/kaliyappan/test-HD.mov';
       $getId3 = new GetId3();
       $audio = $getId3->analyze($presignedUrl);
       //echo '<pre>';
       print_r($audio);
       exit;
    </pre>

    I have a video file located in s3, using PHP "phansys/getid3" : "^2.1@dev" module need to calculate duration. Created pre-signed URL try to access that file but it returns "could not open that file".

    [GETID3_VERSION] => 1.9.4-20120530
    [error] => Array
       (
           [0] => Could not open "

    Please suggest any other way to do this, but if I directly give video file path which is in my server that’s work perfectly.

  • ffmpeg-python extract a specific video stream, change its FPS and embed it back in the video

    19 mars 2021, par user972014

    I have a video containing several streams. A few data and one video.

    &#xA;

    I need to extract the video stream, change the frame rate, embed it back in the video (or combine all stream back to an output file)

    &#xA;

    If needed, this is the list of existing streams :

    &#xA;

    I only need stream 0 and 5 (both video streams) Converted to 2 FPS. And stream 3 which is gpmd, which some irrelevant data format that I need to keep.

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;C:\temp\video.360&#x27;:&#xA;  Metadata:&#xA;    major_brand     : mp41&#xA;    minor_version   : 538120216&#xA;    compatible_brands: mp41&#xA;    creation_time   : 2020-09-08 16:35:49&#xA;  Duration: 00:00:28.13, start: 0.000000, bitrate: 66559 kb/s&#xA;    Stream #0:0(eng): Video: hevc (Main) (hvc1 / 0x31637668), yuvj420p(pc, bt709), 4096x1344 [SAR 1:1 DAR 64:21], 30036 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 29.97 tbc (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro H.265&#xA;      encoder         : GoPro H.265 encoder&#xA;    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro AAC&#xA;    Stream #0:2(eng): Data: none (tmcd / 0x64636D74), 0 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro TCD&#xA;    Stream #0:3(eng): Data: none (gpmd / 0x646D7067), 96 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro MET&#xA;    Stream #0:4(eng): Data: none (fdsc / 0x63736466), 20 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro SOS&#xA;    Stream #0:5(eng): Video: hevc (Main) (hvc1 / 0x31637668), yuvj420p(pc, bt709), 4096x1344 [SAR 1:1 DAR 64:21], 30019 kb/s, 29.97 fps, 29.97 tbr, 90k tbn, 29.97 tbc (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro H.265&#xA;      encoder         : GoPro H.265 encoder&#xA;    Side data:&#xA;      displaymatrix: rotation of nan degrees&#xA;    Stream #0:6(eng): Audio: pcm_s32be (in32 / 0x32336E69), 48000 Hz, 4 channels, s32, 6144 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-09-08 16:35:49&#xA;      handler_name    : GoPro AMB&#xA;

    &#xA;

  • How to overlay video on video with FFMPEG

    28 septembre 2021, par Yogas

    ihave 2 input video.mp4 (with audio) and notif.mov (with audio). I want to overlay notif.mov on video.mp4. I tried this code :

    &#xA;

    ffmpeg -y -i video.mp4 -i "notif.mov" -filter_complex "[0:v][1:v]overlay=0:0" output.mp4

    &#xA;

    both videos playing simultaneously, but sound missing from second input (notif.mov)

    &#xA;

    Any tips ? Thank you !

    &#xA;