Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (50)

  • 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

  • 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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (8027)

  • FFMPEG -VF gives me Unrecognized option VF

    18 avril 2012, par Biskoppen

    I'm trying to watermark a video using FFMPEG and -vf to overlay a PNG.. but it aint working

    My command line :

    $ffmpeg->exec('-i "' . $path_src . '" -vf "movie=watermark.png [wm] ; [in][wm] overlay=0:0 [out]" -map_chapters -1 :-1 -threads 2 -ar 44100 -ab 96k -vcodec libx264 -level 41 -crf 25 -bufsize 2000k -maxrate 2500k -r 25 -g 250 -s 720x480 ' . '-coder 1 -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -flags2 +dct8x8+bpyramid -me_method umh -subq 7 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq \'blurCplx^(1-qComp)\' -bf 16 -b_strategy 1 -bidir_refine 1 -refs 6 -deblockalpha 0 -deblockbeta 0 -y "' . $path_dst . '"') ;

    Result :
    array(3) ["status"]=> int(1) ["success"]=> bool(false) ["output"]=> string(1774) "FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers built on Dec 4 2010 15:37:20 with gcc 4.1.2 20080704 (Red Hat 4.1.2-48) configuration : —prefix=/usr —libdir=/usr/lib —shlibdir=/usr/lib —mandir=/usr/share/man —incdir=/usr/include —disable-avisynth —extra-cflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector —param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables' —enable-avfilter —enable-avfilter-lavf —enable-libdirac —enable-libfaac —enable-libfaad —enable-libfaadbin —enable-libgsm —enable-libmp3lame —enable-libopencore-amrnb —enable-libopencore-amrwb —enable-libx264 —enable-gpl —enable-nonfree —enable-postproc —enable-pthreads —enable-shared —enable-swscale —enable-vdpau —enable-version3 —enable-x11grab libavutil 50.15. 1 / 50.15. 1 libavcodec 52.72. 2 / 52.72. 2 libavformat 52.64. 2 / 52.64. 2 libavdevice 52. 2. 0 / 52. 2. 0 libavfilter 1.19. 0 / 1.19. 0 libswscale 0.11. 0 / 0.11. 0 libpostproc 51. 2. 0 / 51. 2. 0 [aac @ 0x81a54f0]Transition from an ONLY_LONG or LONG_STOP to an EIGHT_SHORT sequence detected. If you heard an audible artifact, please submit the sample to the FFmpeg developers. Last message repeated 1 times Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/var/content/blabla.com/htdocs/setup/megaupload/upload/blabla/0001.mp4' : Metadata : major_brand : mp42 minor_version : 0 compatible_brands : isom Duration : 00:05:16.28, start : 0.000000, bitrate : 1598 kb/s Stream #0.0(eng) : Video : h264, yuv420p, 640x480 [PAR 1:1 DAR 4:3], 1499 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc Stream #0.1(eng) : Audio : aac, 48000 Hz, stereo, s16, 94 kb/s Unrecognized option 'vf'"

  • How to generate SDP file from FFMPEG

    20 novembre 2016, par MobilityLab

    So, I have been working with FFMPEG on a project that involves streaming video from one computer to another across the internet with RTP. I want to take that into ffmpeg and use ffserver to display it on a local network.

    As I understand it, you need to have a SDP information so that the receiving ffmpeg instance can interpret the RTP stream. Despite what webpages say, I can not find the SDP information in the information printed to the console.

    How can I force the transmitting ffmpeg instance to output the SDP information so that I can use it to configure my receiving end ?

    Right now, I am testing on Windows 7, but the final solution will be on linux.

    The command I’m running for testing is

    ffmpeg -fflags +genpts -i files\2005-SFSD-sample-mpeg1.mpg -threads 0 -r 10 -g 45
    -s 352x240 -deinterlace -y 2005.mp4 -an -threads 0 -r 10 -g 45 -s 352x240
    -deinterlace -f rtp rtp://192.168.200.198:9008

    My ffmpeg information is...

    ffmpeg version 0.8, Copyright (c) 2000-2011 the FFmpeg developers built on Jun 23 2011 14:22:23 with gcc 4.5.3
    configuration:
    --disable-static  
    --enable-shared
    --enable-gpl  
    --enable-version3
    --enable-memalign-hack  
    --enable-runtime-cpudetect
    --enable-avisynth
    --enable-bzlib
    --enable-frei0r
    --enable-libopencore-amrnb
    --enable-libopencore-amrwb
    --enable-libfreetype
    --enable-libgsm
    --enable-libmp3lame
    --enable-libopenjpeg
    --enable-librtmp
    --enable-libschroedinger
    --enable-libspeex
    --enable-libtheora
    --enable-libvorbis
    --enable-libvpx
    --enable-libx264
    --enable-libxavs
    --enable-libxvid
    --enable-zlib
    --disable-outdev=sdl
     libavutil    51.  9. 1 / 51.  9. 1
     libavcodec   53.  7. 0 / 53.  7. 0
     libavformat  53.  4. 0 / 53.  4. 0
     libavdevice  53.  1. 1 / 53.  1. 1
     libavfilter   2. 23. 0 /  2. 23. 0
     libswscale    2.  0. 0 /  2.  0. 0
     libpostproc  51.  2. 0 / 51.  2. 0
  • FFMPEG Video encoding error

    13 juin 2012, par user1290051

    I am trying to encode my video using ffmpeg. I have taken output of each frame as a separate image and then I'm joining them into a video using ffmpeg. I compiled ffmpeg from source.
    This is the command I used and the errors I keep running into !

    ---:/media/New Volume/temp$ ffmpeg -f image2 -i image%1d.png -vcodec libx264 \
    -preset ultrafast -crf 15 output.mp4
    ffmpeg version git-2012-03-24-2571506 Copyright (c) 2000-2012 the FFmpeg developers
     built on Mar 24 2012 03:47:02 with gcc 4.6.1
     configuration: --enable-gpl --enable-libfaac --enable-libmp3lame \
       --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora \
       --enable-libvorbis --enable-libx264 --enable-nonfree --enable-version3 \
       --enable-x11grab
     libavutil      51. 44.100 / 51. 44.100
     libavcodec     54. 12.100 / 54. 12.100
     libavformat    54.  2.100 / 54.  2.100
     libavdevice    53.  4.100 / 53.  4.100
     libavfilter     2. 65.102 /  2. 65.102
     libswscale      2.  1.100 /  2.  1.100
     libswresample   0.  7.100 /  0.  7.100
     libpostproc    52.  0.100 / 52.  0.100
    // ERORRS::
    [png @ 0xa4d5120] Missing png signature
    [image2 @ 0xa4ceb00] decoding for stream 0 failed
    [image2 @ 0xa4ceb00] Could not find codec parameters (Video: png)
    image%1d.png: could not find codec parameters