Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (63)

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

  • 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 ;

Sur d’autres sites (7619)

  • Can someone help to build android app encoding video with instructions ? [closed]

    10 février 2024, par Ferel Ultra

    My friend would like to get app compressing video. I don't know how to do it by myself. Could someone to build it with instructions and give me ready app ?
The instructions :

    


    https://github.com/Javernaut/ffmpeg-android-maker

    


    https://github.com/fraunhoferhhi/vvenc/wiki/FFmpeg-Integration

    


  • ffmpeg unknown keyword invalid data found when processing input

    16 novembre 2020, par Adriaan

    I have a file ffmpeg_list_of_files.txt with the content

    



    file '.\Output_0\forces_vs_radii.pdf'
file '.\Output_1\forces_vs_radii.pdf'
file '.\Output_2\forces_vs_radii.pdf'
file '.\Output_3\forces_vs_radii.pdf'
file '.\Output_4\forces_vs_radii.pdf'
and so on...


    



    and then run ffmpeg -f concat -i ffmpeg_list_of_files.txt -c copy output.mkv as is stated at

    



    http://trac.ffmpeg.org/wiki/Concatenate

    



    I, unfortunately, get the error

    



    Line 1: unknown keyword ' ■f'
.\ffmpeg_list_of_files.txt: Invalid data found when processing input


    



    in Windows PowerShell in Windows 10.

    



    What am I doing wrong ?

    


  • Unexpected pause in video after concatenating multiple mp4 files using ffmpeg

    21 janvier 2019, par Ajit Maurya

    I am trying to concatenate more than 90 small MP4 videos for a single MP4 file.
    i got code reference from here
    , i successfully got an output.mp4 file, but i tried to play video, there is a long pause between videos, searched and got this here is the link, but failed.

    CMD CODE : ffmpeg -y -f concat -i inputs.txt -c copy output.mp4
    

    inputs.txt is like

    file video_1.mp4
    duration 17
    file video_2.mp4
    duration 25
    file video_3.mp4
    duration 45
    file video_4.mp4
    duration 15
    file video_5.mp4
    duration 10
    file video_6.mp4
    duration 20
    file video_7.mp4
    duration 25
    file video_8.mp4
    duration 20
    file video_9.mp4
    duration 15
    file video_10.mp4
    duration 12

    Please help me.