Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (88)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (4220)

  • ffmpeg-Error "Buffer queue overflow, dropping." when merging two videos with delay

    20 septembre 2016, par Stefan Urbansky

    I want to merge two videos (as example the iphone video from https://peach.blender.org/trailer-page/). The videos are placed on an background image with the overlay filter and the second video starts 3 seconds later.

    And I need that the audio is mixed.

    Here is my code :

    ffmpeg \
       -loop 1 -i background.png  \
       -itsoffset 0  -i trailer_iphone.m4v \
       -itsoffset 3  -i trailer_iphone.m4v \
       \
       -y \
       -t 36 \
       -filter_complex "
           [2:a] adelay=3000 [2delayed];
           [1:a][2delayed] amerge=inputs=2 [audio];
           [0][1:v] overlay=10:10:enable='between(t,0,33)' [lv1];
           [lv1][2:v] overlay=10:300:enable='between(t,0,36)' [video]
       " \
       \
       -threads 0 \
       -map "[video]" -map "[audio]" \
       -vcodec libx264 -acodec aac \
       merged-video.mp4

    I get the error message :

    [Parsed_overlay_3 @ 0x7fe892502ac0] [framesync @ 0x7fe892502b88] Buffer queue overflow, dropping.

    And the merged video has many dropped frames.

    I know that are some other posting with this error message. But the suggested solutions doesn’t work for me.

    How can I fix the problem ?

  • JavaCV RTMP YouTube Stream results in Error "YouTube is not receiving enough video to maintain smooth streaming , viewers may experience buffering"

    30 novembre 2019, par mindkillerpeacock

    I’m using the RecordActivty.java to stream a live video on YouTube.
    The Stream goes well for around 2-3 minutes but then I get an error YouTube is not receiving enough video to maintain smooth streaming , viewers may experience buffering. And then a few seconds later, the video starts to buffer or becomes choppy, and is not smooth.

    Any solutions ?

  • Error "sys/videoio.h - not found" OpenCV 3.1.0

    22 mars 2017, par Jefferson Rodriguez

    I using Elementary OS and I’m trying to install OpenCV 3.1.0, I follow the instructions of http://docs.opencv.org/3.0-beta/doc/tutorials/introduction/linux_install/linux_install.html
    Also, I have installed libav 11.7 and ffmpeg 3.1.3
    but, after cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ..
    I get :

    — Looking for linux/videodev.h

    — Looking for linux/videodev.h - found

    — Looking for linux/videodev2.h

    — Looking for linux/videodev2.h - found

    — Looking for sys/videoio.h

    — Looking for sys/videoio.h - not found

    — Looking for libavformat/avformat.h

    — Looking for libavformat/avformat.h - found

    — Looking for ffmpeg/avformat.h

    — Looking for ffmpeg/avformat.h - not found

    — checking for module ’libgphoto2’

    — package ’libgphoto2’ not found
    And after make,
    I get :
    ../../lib/libopencv_videoio.so.3.1.0 : referencia a

    av_frame_alloc' sin definir <br />
    ../../lib/libopencv_videoio.so.3.1.0: referencia a

    av_frame_free’ sin definir
    collect2 : error : ld returned 1 exit status
    make[2] : * [bin/opencv_test_video] Error 1
    make[1] : *
    [modules/video/CMakeFiles/opencv_test_video.dir/all] Error 2

    someone who can help me ?