Recherche avancée

Médias (91)

Autres articles (79)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6176)

  • Convert audio file using another audio file as template in ffmpeg

    3 décembre 2015, par Iulian Onofrei

    I have some .mp3 audio files, with different "configuration" like sample rate, bit rate, etc.

    For my app, one of them is working and the rest, not.

    How can I convert the rest of them using the working file’s "configuration" ?

    Metadata of two sample files :

    ~/Downloads ❯ ffmpeg -i working.mp3 -i not_working.mp3
    ffmpeg version 2.8.3 Copyright (c) 2000-2015 the FFmpeg developers
     built with Apple LLVM version 7.0.0 (clang-700.1.76)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-vda
     libavutil      54. 31.100 / 54. 31.100
     libavcodec     56. 60.100 / 56. 60.100
     libavformat    56. 40.101 / 56. 40.101
     libavdevice    56.  4.100 / 56.  4.100
     libavfilter     5. 40.101 /  5. 40.101
     libavresample   2.  1.  0 /  2.  1.  0
     libswscale      3.  1.101 /  3.  1.101
     libswresample   1.  2.101 /  1.  2.101
     libpostproc    53.  3.100 / 53.  3.100
    [mp3 @ 0x7fd2d380da00] Skipping 0 bytes of junk at 33.
    [mp3 @ 0x7fd2d380da00] Estimating duration from bitrate, this may be inaccurate
    Input #0, mp3, from 'working.mp3':
     Metadata:
       encoder         : Lavf52.64.2
     Duration: 00:00:00.65, start: 0.000000, bitrate: 64 kb/s
       Stream #0:0: Audio: mp3, 22050 Hz, mono, s16p, 64 kb/s
    [mp3 @ 0x7fd2d4008800] Skipping 0 bytes of junk at 417.
    Input #1, mp3, from 'not_working.mp3':
     Duration: 00:00:01.83, start: 0.025057, bitrate: 46 kb/s
       Stream #1:0: Audio: mp3, 44100 Hz, stereo, s16p, 46 kb/s
       Metadata:
         encoder         : LAME3.99r
  • There is no audio in the video wich I recording with "android camera" in mobile ffmpeg

    30 novembre 2019, par kadr0id

    I use mobile ffmpeg version v4.3-dev-1181. But I can’t save the video with sound.

    This is my code :

    _flutterFFmpeg.execute('-y -f android_camera -video_size hd720 -framerate 30 -i 0:0 -f flv  \"/storage/emulated/0/file85.flv\"');

    Video save perfect but without sound. Maby I do something wrong ?

    In support is an example :

    Record video and audio into a file with this command :

    -y -f android_camera -i 0:0 -r 30 -pixel_format bgr0 -t 00:00:05 <record file="file" path="path">
    </record>
  • Proccess audio/video stream with opencv and export to audio/video stream

    13 juin 2016, par user3373406

    I need read a stream of audio/video and process the video with openCV.Then export the same stream with the video processed. All this need to be in real time. Of course you will have a delay for the processing with openCV. Thank.