Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (44)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

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

Sur d’autres sites (6992)

  • Connection timed out error for ffmpeg libraries installation

    12 mai 2015, par Kiran Kumar Dash

    I am trying to compile ffmpeg on my centos server. Here is the link I am using as a reference :

    https://trac.ffmpeg.org/wiki/CompilationGuide/Centos

    Here is the command I entered :

    git clone --depth 1 git://source.ffmpeg.org/ffmpeg

    And this is the error message that popped up

    Initialized empty Git repository in /root/ffmpeg_sources/ffmpeg/.git/
    source.ffmpeg.org[0: 2a01:e0d:1:3:58bf:fa76:0:1]: errno=Connection timed out
    source.ffmpeg.org[0: 88.191.250.118]: errno=Connection timed out
    fatal: unable to connect a socket (Connection timed out)

    PLease help why is it coming and what can be done to avoid

  • Combining Audio and Video file in python [duplicate]

    8 juin 2020, par yso

    I'm trying to understand how to us ffmpeg to combine video and audio files in python. I want to combine a .avi file and a .wav file to create a final .avi file. Is this the right approach ? I'm confused by the ffmpeg syntax.
Any help would be great.

    



    I was looking through this for help :
https://wiki.libav.org/Snippets/avconv#Combine_audio_and_video_file

    



    import ffmpeg
import subprocess

cmd = 'ffmpeg -i inputvideo.avi -i inputaudio.wav -c:v copy -c:a aac output_video_and audio.avi'
subprocess.call(cmd, shell=True)                                     # "Muxing Done
print('Muxing Done')


    


  • Xuggler Transcoder error

    4 septembre 2013, par Andrei Baidoc

    I tried to follow the instructions from here : http://www.javacodegeeks.com/2010/05/rtmp-to-rtsp-re-stream-using-wowza-and.html

    All worked fine, Xuggler has been installed with no errors, all tests passed but now when I try to start the transcoder I get this error :

    root@heb1:~# java -jar transcoder-1.0.jar
    11:25:28.902 [main] WARN  com.xuggle.ferry.JNILibrary - Failure: library load of library: xuggle; url: /tmp/xuggle/xuggle6615346873936202632.tmp; error: java.lang.UnsatisfiedLinkError: /tmp/xuggle/xuggle6615346873936202632.tmp: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /tmp/xuggle/xuggle6615346873936202632.tmp)
    11:25:46.673 [main] ERROR com.xuggle.xuggler - URL: rtmp://localhost/live/b; Error: could not find output format (../../../../../../../csrc/com/xuggle/xuggler/Container.cpp:513)
    java.lang.RuntimeException: could not open output url: rtmp://localhost/live/b
           at com.xuggle.xuggler.Converter.setupStreams(Converter.java:670)
           at com.xuggle.xuggler.Converter.run(Converter.java:1203)
           at com.agilio.transcoder.App.main(App.java:34)

    So the transcoder sees the input stream, but for the output it says that it can't find the output format, althow it is send to Xuggler :

    String[] parameters = new String[] { "--acodec", "libfaac", "--vcodec",
                       "libx264", "--vpreset",
                       "/usr/local/xuggler/share/ffmpeg/libx264-ultrafast.ffpreset",
                       inputStream, outputStream };