Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (72)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (7398)

  • ffmpeg mobile convert error (ffmpeg 2.0.2)

    6 février 2016, par user3273412

    My ffmpeg is showing this in the logs when I try to convert a video into mobile format

    [aac @ 0xf50860] The encoder ’aac’ is experimental but experimental codecs are not enabled, add ’-strict -2’ if you want to use it.
    /usr/bin/ffmpeg -i ’/home/admin/site/media/videos/flv/127.flv’ -y -y -vcodec libx264 -threads 0 -aspect 16:9 -s 432x240 -flags +loop -partitions 0 -subq 1 -trellis 0 -refs 1 -coder 0 -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -maxrate 10M -bufsize 10M -rc_eq ’blurCplx^(1-qComp)’ -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -f mp4 -b:v 1800k -acodec libfaac -ac 2 -ab 128k -ar 44100 -profile:v baseline -level 1.3 -preset slow -pass 2 -passlogfile /home/admin/site/tmp/logs/ffmpegpass-PqkhuZH2 /home/admin/site/media/videos/mobile/127.nomov.mp4

    Anyone help me solve this issue please ?

  • ffmpeg does not record video and audio simultaneously

    28 mars 2016, par dilip yadav

    For video recording I am using :
    ffmpeg -f v4l2 -i /dev/video0 -vcodec h264 -r 20 /home/test.avi

    For audio recording I am using :
    ffmpeg -f alsa -acodec pcm_alaw -ar 8k -ac 1 /home/w2.wav

    Both commands work fine.
    When I combine both of them like :
    ffmpeg -f v4l2 -i /dev/video0 -f alsa -i hw:0,0 -acodec pcm_alaw -ar 8k -ac 1 -vcodec h264 -r 23  /home/test.avi

    It throws :

    [alsa @ 0x2650500] ALSA buffer xrun.
    [alsa @ 0x2650500] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)

    Audio is not recorded, but video is recorded. I don’t know what I am doing wrong.Please help.

  • message "avcodec_decode_video2 is deprecated" when trying to build h264_image_transport package in ROS

    14 septembre 2021, par Hugh Rivers

    I'm using a tello_driver for ROS and currently I am at a point where I want to subscribe to the transported images of the /tello/imag/raw/h264 topic in order to apply computer vision algorithms on the images in the next step.

    


    But I get the following warnings, when I try to build the h264_image_transport package inside the catkin workspace :

    


    [ 80%] Built target tello_driver_generate_messages_nodejs
[ 90%] Built target tello_driver_generate_messages_py
[ 90%] Built target tello_driver_generate_messages
/home/usr/catkin_ws/src/h264_image_transport/src/h264_subscriber.cpp: In member function ‘virtual void h264_image_transport::H264Subscriber::internalCallback(const ConstPtr&, const Callback&)’:
/home/usr/catkin_ws/src/h264_image_transport/src/h264_subscriber.cpp:47:69: warning: ‘int avcodec_decode_video2(AVCodecContext*, AVFrame*, int*, const AVPacket*)’ is deprecated [-Wdeprecated-declarations]
   47 |     int len = avcodec_decode_video2(c, picture, &got_picture, &avpkt);
      |                                                                     ^
In file included from /home/usr/catkin_ws/src/h264_image_transport/include/h264_image_transport/h264_subscriber.h:14,
                 from /home/usr/catkin_ws/src/h264_image_transport/src/h264_subscriber.cpp:3:
/usr/include/x86_64-linux-gnu/libavcodec/avcodec.h:4828:5: note: declared here
 4828 | int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
      |     ^~~~~~~~~~~~~~~~~~~~~
/home/usr/catkin_ws/src/h264_image_transport/src/h264_subscriber.cpp:47:69: warning: ‘int avcodec_decode_video2(AVCodecContext*, AVFrame*, int*, const AVPacket*)’ is deprecated [-Wdeprecated-declarations]
   47 |     int len = avcodec_decode_video2(c, picture, &got_picture, &avpkt);
      |                                                                     ^
In file included from /home/usr/catkin_ws/src/h264_image_transport/include/h264_image_transport/h264_subscriber.h:14,
                 from /home/usr/catkin_ws/src/h264_image_transport/src/h264_subscriber.cpp:3:
/usr/include/x86_64-linux-gnu/libavcodec/avcodec.h:4828:5: note: declared here
 4828 | int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
      |     ^~~~~~~~~~~~~~~~~~~~~
[ 95%] Linking CXX shared library /home/usr/catkin_ws/devel/lib/libh264_image_transport.so
[100%] Built target h264_image_transport


    


    Basically, the message tells me that avcodec_decode_video2 is deprecated. When I did some research I found that avcodec_send_packet() and avcodec_receive_frame() can be used instead but I have unfortunately no idea how to do that. Could someone help me here please, or is there another way to fix that ? Thanks !