Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11020)

  • ffmpeg empty video with low frame rate

    27 avril 2013, par Marco Gagliardi

    I've just downloaded ffmpeg since it seems to perfectly match my needs (make a video from a set of pictures). I'm currently playing around with some examples just to get started and there's something weird happening that I can't explain.
    I'm trying this command (provided in the official documentation) :

    ffmpeg -f image2 -pattern_type glob -i 'foo-*.jpeg' -r 12 -s WxH foo.avi

    on a data set of 10 jpg pictures (of course I changed the pattern with '*.jpg'). The video seems to be encoded correctly but it's simply too fast to be sure about that (anyway it stops on the last frame that corresponds to the last picture). In order to get a longer video i thought to low the frame rate from 12 to 1 (one sec each picture) or 0.5 (2 sec each one) and so on.. no way ! with low rate values even if the video is played the pictures are simply not displayed. The player (VLC in my case) just shows a blank/empty video for a few seconds.

    Am I making something wrong or have I misunderstood the -r parameter ? Is it something related to codecs involved ? Finally.. How can i get each picture displayed for 1 or 2 seconds ?

    Thank you !

  • java.lang.NoClassDefFoundError : java.lang.ClassNotFoundException : org.bytedeco.javacpp.avutil

    7 avril 2016, par Saty

    I am finding this weird issue, I am using this(https://github.com/Bilibili/ijkplayer) library to play the RTMP. My App also includes the option to stream video as well for that I am using opencv and ffmpeg. I have included the below jar files to my libs folder for the streaming purpose and it was working well, I have added files from ijkplayer and its keep telling the error message

    If I make separate project for both, they are working !!

    ffmpeg-android-arm.jar
    ffmpeg-android-x86.jar
    ffmpeg.jar
    javacpp.jar
    javacv.jar
    opencv-android-arm.jar
    opencv-android-x86.jar
    opencv.jar
    videoinput.jar

    I am thinking that there must be a clash because both using FFMpeg so how can i detect that clash and resolve it ?

  • Invalid audio stream. Exactly one MP3 audio stream is required

    4 juin 2019, par user11588722

    I’ve written a small line to concat two mp3 files and add background music to the result. It works quite well, but I’m getting some weird errors. Can anyone identify the cause ?

    (inside a for loop)

    ffmpeg -y -i "Input/%%i" -i "Assets/outro.mp3" -filter_complex "[0:a][1:a]concat=n=2:v=0:a=1;amovie='Assets/music.mp3':loop=999,volume=0.2[s];[0][s]amix=duration=shortest" "tmp.audio.mp3"

    Errors :

    [mp3 @ 000000000059f180] Invalid audio stream. Exactly one MP3 audio stream is required.
    Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument
    Error initializing output stream 0:1 —

    Log file : https://pastebin.com/PLnu0Fvn