Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (42)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9002)

  • How to add current UTC Time in MKV file metadata using ffmpeg ?

    1er mai 2022, par Shahpari

    I am not sure if it's possible, but is there anyway we can add current UTC time inside the mkv metatag using ffmpeg ? i read https://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata but i could not find anything.

    


    -metadata "Creation Time"="Need to add time tag/code"


    


    output will show

    


    Creation Time: UTC 2020-06-04 02:40:29


    


  • Is there any way to remove Protected metadata ?

    23 septembre 2020, par Nojus741

    I have an Audio file which plays fine in VLC player, but not in other players. I opened up properties of the file and it says Encryption : Encrypted, but there is no protection on this file as it plays in VLC player. Is there any way to remove this metadata ?

    


    File info :

    


    Format                                   : iso6
Codec ID                                 : iso6 (iso6/dash)
File size                                : 127 MiB
Duration                                 : 1 h 29 min
Overall bit rate                         : 199 kb/s

Audio
ID                                       : 1
Format                                   : AAC LC
Format/Info                              : Advanced Audio Codec Low Complexity
Codec ID                                 : enca-40-2
Duration                                 : 1 h 29 min
Bit rate                                 : 192 kb/s
Channel(s)                               : 2 channels
Channel layout                           : L R
Sampling rate                            : 48.0 kHz
Frame rate                               : 46.875 FPS (1024 SPF)
Compression mode                         : Lossy
Stream size                              : 123 MiB (96%)
Language                                 : Lithuanian
Default                                  : Yes
Alternate group                          : 1
Encryption                               : Encrypted


    


    The error I get with ffmpeg :

    


    ffmpeg version git-2020-06-28-4cfcfb3 Copyright (c) 2000-2020 the FFmpeg developers
 built with gcc 9.3.1 (GCC) 20200621
 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-libsrt --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-libvmaf --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libgsm --disable-w32threads --enable-libmfx --enable-ffnvcodec --enable-cuda-llvm --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt --enable-amf
  libavutil      56. 55.100 / 56. 55.100
  libavcodec     58. 93.100 / 58. 93.100
  libavformat    58. 47.100 / 58. 47.100
  libavdevice    58. 11.100 / 58. 11.100
  libavfilter     7. 86.100 /  7. 86.100
  libswscale      5.  8.100 /  5.  8.100
  libswresample   3.  8.100 /  3.  8.100
  libpostproc    55.  8.100 / 55.  8.100
**[mov,mp4,m4a,3gp,3g2,mj2 @ 0000021962e0c2c0] Incorrect number of samples in encryption info**
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'C:\Users\Administrator\Desktop\track_2.mp4':
  Metadata:
    major_brand     : iso6
    minor_version   : 0
    compatible_brands: iso6dash
  Duration: 01:29:15.60, bitrate: 199 kb/s
    Stream #0:0(lit): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 191 kb/s (default)
    Metadata:
      handler_name    : SoundHandler
At least one output file must be specified


    


  • laravel-ffmpeg - fopen(/tmp/laravel-ffmpegi340VY.mkv) : failed to open stream : No such file or directory

    26 janvier 2020, par jyoti gautam

    Using the laravel-ffmpeg librabry to convert video file from .webm to mp4 aws s3 bucket url and using following code.

    $videoFile = '/courses/images/1579626678msr-2020-01-21T17-11-18-771Z.webm';  //= upload/video1.mp4
      FFMpeg::fromDisk('s3')
       ->open($videoFile)
       ->getFrameFromSeconds(10)
       ->export()
       ->toDisk('s3')
       ->inFormat(new \FFMpeg\Format\Video\X264)
       ->save('small_steve.mp4');

    How can access file from s3 bucket and convert ?