Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (74)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10252)

  • Why my ffmpeg libs are so large ? [on hold]

    9 avril 2014, par user3504221

    I compiled ffmpeg libs on my Ubuntu 64-bits using the following script :

      mkdir ~/ffmpeg_sources

    #x264

    cd ~/ffmpeg_sources
      wget http://download.videolan.org/pub/x264/snapshots/last_x264.tar.bz2
      tar xjvf last_x264.tar.bz2
      cd x264-snapshot*
      ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static --disable-asm
      make
      make install
      make distclean

    #FFmpeg

    cd ~/ffmpeg_sources
      wget http://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2
      tar xjvf ffmpeg-snapshot.tar.bz2
      cd ffmpeg
      PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig"
      export PKG_CONFIG_PATH
      ./configure --prefix="$HOME/ffmpeg_build" --extra-cflags="-I$HOME/ffmpeg_build/include" \
      --extra-ldflags="-L$HOME/ffmpeg_build/lib" --bindir="$HOME/bin" --extra-libs="-ldl" --   enable-gpl \
     --enable-libx264 --enable-x11grab --disable-yasm                                                                                                                              
      make
      make install
      make distclean
      hash -r

    But the final libs are really large (For example, libavcodec.a > 140 Mb). Anybody know why my libs are so large ?

    EDIT

    My Solutions :

    • add the option "—disable-debug" to the ./configure. The size of my libavcodec fell from 150Mb to 12Mb !
    • Remove all unnecessary codecs : Add the options -disable-encoders, —disable-decoders and then add only codecs you want with —enable-encoder=NAME and —enable-decoder=NAME. Print the list using ./configure —list-encoders —list-decoders. see ./configure —help for more information. (My final libavcodec has a size of 4Mo)
  • javacv FFmpegFrameGrabber.start() blocked,not run next line

    23 août 2017, par L.U

    when i run grabber.start it blocked,not run next line.

    FFmpegFrameGrabber grabber = new  FFmpegFrameGrabber("rtsp://admin:123456@192.168.3.2:10554/tcp/av0_0");
    grabber.start();
    final AtomicBoolean interruptFlag = new AtomicBoolean(false);

    get console message :

    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.
    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.
    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.
    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.

    how to resole it ?thanks

  • python cv2 video playing quality

    10 août 2017, par TheRutubeify

    Why it is so big difference in quality between MPC-CH Windows Media Player and cv2 cv2.VideoCapture(’*.mp4’) when playing the same file ! Codec H. 264 E

    How I can improve quality with cv2 ?

    Here is the screenshot Left(cv2) Rigth(MPC-CH) :
    Left cv2, Right MPC-CH Windows Media Player

    cv2.namedWindow("Final", 0)
    cv2.resizeWindow("Final", 300, 200)
    cap = cv2.VideoCapture('1.mp4')
    while(cap.isOpened()):
       qwe, frame = cap.read()
       cv2.waitKey(30)
       gray = cv2.cvtColor(frame, cv2.COLOR_BGR2BGRA) #COLOR_RGB2RGBA
       cv2.imshow('Final',gray)

    Any suggestions ?