Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (41)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6060)

  • ffmpeg : Could not negotiate a supported cipher suite

    9 novembre 2016, par bot1131357

    I am trying to securely rtsp stream between two consoles on my computer.

    On the listening console I have :

    ffplay -rtsp_flags listen rtsps://127.0.0.1:8554/live.sdp?cert=domain.crt"&"key=domain.key

    On the streaming console I have :

    ffmpeg -f lavfi -i smptebars -c:v libvpx -f rtsp -rtsp_transport tcp rtsps://127.0.0.1:8554/live.sdp

    When I run ffmpeg on the second console, ffplay (1st console) returns with the following message :

    [tls @ 0x7f3eb8005be0] error:1408A0C1:SSL routines:ssl3_get_client_hello:no shared cipher
    [rtsp @ 0x7f3eb80008c0] Unable to open RTSP for listening
    rtsps://127.0.0.1:8554/live.sdp?cert=domain.crt&key=domain.key: Input/output error

    The second console shows this :

    Input #0, lavfi, from 'smptebars':
     Duration: N/A, start: 0.000000, bitrate: N/A
       Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 25 tbr, 25 tbn, 25 tbc
    [libvpx @ 0x120f8c0] v1.6.0-322-gc325fb7
    [tls @ 0x12340e0] Unable to negotiate TLS/SSL session
    Could not write header for output file #0 (incorrect codec parameters ?): Input/output errorStream mapping:
     Stream #0:0 -> #0:0 (rawvideo (native) -> vp8 (libvpx))
       Last message repeated 1 times

    I get the feeling that the command syntax that I use is incorrect, but I was unable to find much resources on this on the internet.
    Can someone point me in the right direction ?


    My build (Ubuntu 14.04 LTS)

    ffmpeg version N-82143-gbf14393 Copyright (c) 2000-2016 the FFmpeg developers
     built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
     configuration: --prefix=/home/reccsi/Dev/build-x64/ffmpeg-x64/ --target-os=linux --pkg-config-flags=--static --enable-shared --enable-libvpx --enable-libvorbis --enable-openssl --enable-pic --enable-debug
  • How can I reset the path of FFMPEG in Java ?

    4 avril 2017, par Figgyja

    I accidentally set the path for FFMPEG to a different folder, and I can’t change it back.

    I’m using Processing (the API and its IDE) and the user created Video Export library to capture and write an mp4 video file. The library required FFMPEG, so I downloaded and installed it. After I installed it, I ran the code, and the library called Java to request the path of FFMPEG. I wrongly set the path to a different folder, which I eventually deleted. I knew I set it to the wrong folder, and ran the code again to see if I could trigger the Java prompt again to reset the folder.


    The console response I received was : (I’m sure most of it doesn’t have to do with the actual issue. However, I wanted to show all of it in case it somehow does.)

    Oct 24, 2016 10:23:25 PM java.util.prefs.WindowsPreferences
    WARNING : Could not open/create prefs root node Software\JavaSoft\Prefs
    at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.
    java.io.IOException : Cannot run program
    "C :...\Processing\Octree_Graphics\data\FFMPEG\ff-prompt.bat" :
    CreateProcess error=2, The system cannot find the file specified at
    java.lang.ProcessBuilder.start(ProcessBuilder.java:1048) at
    com.hamoid.VideoExport.startFfmpeg(Unknown Source) at
    com.hamoid.VideoExport.initialize(Unknown Source) at
    com.hamoid.VideoExport.saveFrame(Unknown Source) at
    Octree_Graphics.draw(Octree_Graphics.java:90) at
    processing.core.PApplet.handleDraw(PApplet.java:2399) at
    processing.opengl.PSurfaceJOGL$DrawListener.display(PSurfaceJOGL.java:731)
    at
    jogamp.opengl.GLDrawableHelper.displayImpl(GLDrawableHelper.java:692)
    at jogamp.opengl.GLDrawableHelper.display(GLDrawableHelper.java:674)
    at
    jogamp.opengl.GLAutoDrawableBase$2.run(GLAutoDrawableBase.java:443)
    at
    jogamp.opengl.GLDrawableHelper.invokeGLImpl(GLDrawableHelper.java:1293)
    at
    jogamp.opengl.GLDrawableHelper.invokeGL(GLDrawableHelper.java:1147)
    at com.jogamp.newt.opengl.GLWindow.display(GLWindow.java:759) at
    com.jogamp.opengl.util.AWTAnimatorImpl.display(AWTAnimatorImpl.java:81)
    at com.jogamp.opengl.util.AnimatorBase.display(AnimatorBase.java:452)
    at
    com.jogamp.opengl.util.FPSAnimator$MainTask.run(FPSAnimator.java:178)
    at java.util.TimerThread.mainLoop(Timer.java:555) at
    java.util.TimerThread.run(Timer.java:505) Caused by :
    java.io.IOException : CreateProcess error=2, The system cannot find the
    file specified at java.lang.ProcessImpl.create(Native Method) at
    java.lang.ProcessImpl.(ProcessImpl.java:386) at
    java.lang.ProcessImpl.start(ProcessImpl.java:137) at
    java.lang.ProcessBuilder.start(ProcessBuilder.java:1029) ... 17 more
    VideoExport error : Ffmpeg failed. Study
    C :...\Processing\Octree_Graphics\basic.mp4.txt for more details.


    I need to find a way to reset the path of FFMPEG that Java has. I have tried uninstalling and reinstalling the library, but I haven’t tried Java (I don’t want to mess with anything it has in its current state).

    P.S. The file listed at the end of the console response (basic.mp4.txt) was empty because it had not begun writing to the file yet.

  • System reboots during ffmpeg tool installation

    11 novembre 2016, par JeeBoomBaa

    I have enabled QSV with reference of the streambuilder’s enabling-iqsv docs.

    MACHINE DETAILS

    Server : Intel(R) Xeon(R) CPU E3-1285 v4 3.50GHz w/ Supermicro X10SLH-F

    Kernel : Linux 3.10.0-229.1.2.44985.MSSr7.el7.centos.x86_64 #1 SMP Wed Nov 9 16:26:25 PST 2016 x86_64 x86_64 x86_64 GNU/Linux

    I have installed ffmpeg with —enable-nonfree —enable-libmfx configurations, configuration command was successfully done.Then, I invoke make and our server gets hanged in few seconds and it will gets rebooted automatically.

    I feel it might be compilation issue with make script.

    ./configure --prefix="/usr/ffmpeg" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" --bindir="$HOME/bin" --pkg-config-flags="--static" --enable-nonfree --enable-libmfx
    make
    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=2068, si_status=0, si_utime=0, si_stime=0} ---
    rt_sigreturn()                          = 2068
    rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
    rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
    stat("libavcodec/intrax8dsp.o", {st_mode=S_IFREG|0644, st_size=82840, ...}) = 0
    stat("libavcodec/ituh263dec.o", 0x7ffff86affb0) = -1 ENOENT (No such file or directory)
    stat("libavcodec/ituh263dec.c", {st_mode=S_IFREG|0644, st_size=38617, ...}) = 0
    rt_sigprocmask(SIG_BLOCK, [HUP INT QUIT TERM XCPU XFSZ], NULL, 8) = 0
    vfork()                                 = 2072
    rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
    wait4(-1, CC libavcodec/ituh263dec.o

    I have attached config.log and FFMPEG-MAKE-TRACE.log file.