Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (6617)

  • Final results of ffmpeg installation are libraries with missing links

    17 avril 2017, par Mikasa
    [poster@localhost lib]$ ldd libavfilter.so
       linux-vdso.so.1 =>  (0x00007ffc6bbd0000)
       libswscale.so.4 => not found
       libpostproc.so.54 => not found
       libavformat.so.57 => not found
       libavcodec.so.57 => not found
       libswresample.so.2 => not found
       libavutil.so.55 => not found
       libm.so.6 => /lib64/libm.so.6 (0x00007fc796d79000)
       libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fc796b5c000)
       libc.so.6 => /lib64/libc.so.6 (0x00007fc79679b000)
       /lib64/ld-linux-x86-64.so.2 (0x00007fc79742b000)
    [poster@localhost lib]$ ldd libswscale.so
       linux-vdso.so.1 =>  (0x00007ffe29572000)
       libavutil.so.55 => not found
       libm.so.6 => /lib64/libm.so.6 (0x00007f4cfdea3000)
       libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f4cfdc87000)
       libc.so.6 => /lib64/libc.so.6 (0x00007f4cfd8c6000)
       /lib64/ld-linux-x86-64.so.2 (0x00007f4cfe442000)

    All of them are like that.
    I’m a newb and don’t know how to solve this. They’re right next to each other.
    Any suggestion is appreciated. Thank you.

  • Compression rate (final size) ffmpeg with h263 as codec, can be improved ?

    29 août 2013, par voskyc

    With the following data :

    Sample 1 :
    vcodec : H263
    Duration : 4seconds
    Resolution:1288/720
    FR : 30fps/s
    datarate : 195.135 kB/s
    MP3 : 44HZ, 16bits


    Size file : 5.84MB.

    Sample 2 :
    vcodec : H263
    Duration : 4seconds
    Resolution:640/480
    FR : 30fps/s
    datarate : 195.135 kB/s
    MP3 : 44HZ, 16bits


    Size file = 3.34MB.

    Both in flv container.

    Aren't those sizes a little bit high for 4 second video ?

    I believe we are doing some kind of error or missing an optimization.
    Should we decrease the datarate ?
    Maybe we are missing some option for h263 encoding with FFMPEG ?.

    Thanks a lot in advance for your suggestions.

    Note : no, we "can not" use h264. :-)

  • MoviePy : Concatenating video clips causes weird glitches in final video

    16 mai 2022, par JohnSmithy1266

    Is there a way to successfully always patch up any clips together in such a way that prevents weird glitches ? I put together a .mp4 from smaller .mp4 files and I got a final video with weird glitches. I am running Python 3.6.1 on Windows 10 through Sublime Text 3. I used MoviePy to do the concatenation.

    



    The code :

    



    from moviepy.editor import VideoFileClip, concatenate_videoclips
import os.path

path = "C:/Users/blah/videos/out/"

cliparray = []

for filename in os.listdir(path):
    cliparray.append(VideoFileClip(path + filename))

final_clip = concatenate_videoclips(cliparray)

final_clip.write_videofile(path + "concatenatedvideo.mp4", codec = "libx264")


    



    The weird glitches :

    



      

    1. One of the clips turns into a 3x3 grid of smaller clips.
    2. 


    3. Another has the audio not lined up with the video
    4. 


    5. Another is sped up faster than what was normal.
    6.