Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (56)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

  • FFMPEG "listfile.txt : Invalid data found when processing input" concat error

    18 juillet 2019, par Léandre

    I have a txt file, where I have all my mp4 file to concat with ffmpeg. I saw the documentation of FFMPEG but I don’t see where I did something wrong.

    Here is my txt file :

    file '/home/leandre/PycharmProjects/video_test/1.mp4'
    file '/home/leandre/PycharmProjects/video_test/2.mp4'
    file '/home/leandre/PycharmProjects/video_test/3.mp4'
    file '/home/leandre/PycharmProjects/video_test/4.mp4'
    file '/home/leandre/PycharmProjects/video_test/5.mp4'
    file '/home/leandre/PycharmProjects/video_test/6.mp4'
    file '/home/leandre/PycharmProjects/video_test/7.mp4'
    file '/home/leandre/PycharmProjects/video_test/8.mp4'
    file '/home/leandre/PycharmProjects/video_test/9.mp4'
    file '/home/leandre/PycharmProjects/video_test/10.mp4'

    And this is my ffmpeg command : ffmpeg -f concat -safe 0 -i listfile.txt -c copy out_concat.mp4

    And my error listfile.txt: Invalid data found when processing input

  • "Error : FFMPEG not found" but FFMPEG should be installed - Discord Bot

    13 juillet 2019, par IAmAze

    So I’ve been working on a Discord Music bot and I need FFMPEG, I just cant seem to find a working build.

    I already tried to install it via npm, choco, git and I used the installer from ffmpeg’s website. None of these worked.

    This is my Error :

    Error: FFMPEG not found
       at Function.selectFfmpegCommand (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\prism-media\src\transcoders\ffmpeg\Ffmpeg.js:46:13)
       at new FfmpegTranscoder (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\prism-media\src\transcoders\ffmpeg\Ffmpeg.js:7:37)
       at new MediaTranscoder (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\prism-media\src\transcoders\MediaTranscoder.js:10:19)
       at new Prism (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\prism-media\src\Prism.js:5:23)
       at new VoiceConnection (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\discord.js\src\client\voice\VoiceConnection.js:46:18)
       at Promise (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\discord.js\src\client\voice\ClientVoiceManager.js:63:22)
       at new Promise (<anonymous>)
       at ClientVoiceManager.joinChannel (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\discord.js\src\client\voice\ClientVoiceManager.js:45:12)
       at VoiceChannel.join (C:\Users\MauSc\Desktop\CrafterMusic - JS\node_modules\discord.js\src\structures\VoiceChannel.js:130:30)
       at Client.bot.on (C:\Users\MauSc\Desktop\CrafterMusic - JS\index.js:50:76)
    </anonymous>

    Edit : I should probably point out that Im an absolute beginner and have difficulties finding errors on my own.

  • ffmpeg concat two videos with different sizes encounter "do not match" error

    1er juillet 2019, par baojieqh

    I’m trying to concat 4 mp4 files. I’m using the command below but not able to concat

    ffmpeg -i L00.mp4 -i L01.mp4 \
     -filter_complex "[0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]" \
     -map "[v]" -map "[a]" output.mp4

    Getting this error :

    Input link in1:v0 parameters (size 1150x722, SAR 1:1) do not match the corresponding output link in0:v0 parameters (1158x690, SAR 1:1)

    This command from this post

    ffmpeg -i L00.mp4 -i L01.mp4 -filter_complex \
    "[0:v]scale=1158:722:force_original_aspect_ratio=decrease,pad=1158:722:(ow-iw)/2:(oh-ih)/2[v0]; \
    [1:v]scale=1158:722:force_original_aspect_ratio=decrease,pad=1158:722:(ow-iw)/2:(oh-ih)/2[v1]; \
    [v0][0:a][1:v][1:a]concat=n=2:v=1:a=1[v][a]" \
    -map "[v]" -map "[a]" -c:v libx264 -c:a aac -movflags +faststart output.mp4

    getting this error :

    Filter pad has an unconnected output

    the dimensions of L00.mp4 is 1158 × 690, L01.mp4 is 1150 × 722.

    how to fix this ?