Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

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

Autres articles (19)

  • Les images

    15 mai 2013
  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

Sur d’autres sites (3412)

  • brew install ffmpeg installs python 3.9

    13 novembre 2020, par mrgloom

    For some reason brew install ffmpeg downloads python 3.9 as dependence

    


    ==> Installing dependencies for ffmpeg: gnutls, python@3.9, glib, cairo, gobject-introspection, harfbuzz, libass and libvpx


    


    As I can see here https://formulae.brew.sh/formula/ffmpeg there is no dependence on python 3.9

    


    How can I install ffmpeg for my current python Python 3.7.7 ?

    


    Update :

    


    Maybe something is broken in my python installation ?

    


    brew info python&#xA;&#xA;python@3.9: stable 3.9.0 (bottled)&#xA;Interpreted, interactive, object-oriented programming language&#xA;https://www.python.org/&#xA;/usr/local/Cellar/python/3.7.7 (4,165 files, 64.0MB) *&#xA;  Poured from bottle on 2020-04-03 at 20:11:58&#xA;From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/python@3.9.rb&#xA;License: Python-2.0&#xA;==> Dependencies&#xA;Build: pkg-config ✔&#xA;Required: gdbm ✔, openssl@1.1 ✔, readline ✔, sqlite ✔, xz ✔&#xA;==> Caveats&#xA;Python has been installed as&#xA;  /usr/local/bin/python3&#xA;&#xA;Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to&#xA;`python3`, `python3-config`, `pip3` etc., respectively, have been installed into&#xA;  /usr/local/opt/python@3.9/libexec/bin&#xA;&#xA;You can install Python packages with&#xA;  pip3 install <package>&#xA;They will install into the site-package directory&#xA;  /usr/local/lib/python3.9/site-packages&#xA;&#xA;See: https://docs.brew.sh/Homebrew-and-Python&#xA;==> Analytics&#xA;install: 588,344 (30 days), 666,372 (90 days), 666,373 (365 days)&#xA;install-on-request: 104,126 (30 days), 105,703 (90 days), 105,705 (365 days)&#xA;build-error: 0 (30 days)&#xA;</package>

    &#xA;

    brew info shows python@3.9 but actually it's 3.7.7 :

    &#xA;

    /usr/local/bin/python3 -V&#xA;Python 3.7.7&#xA;

    &#xA;

  • Convert set of PNGs into rawvideo .raw FFMPEG

    13 août 2020, par Wire

    Recently, I have been trying to modify the boot animation of a little robot. It is a .raw file and it contains every RGB565 frame one after the other. I have been able to get all of the frames using

    &#xA;

    ffmpeg -f rawvideo  -pixel_format rgb565 -video_size 184x96 -framerate 10 -i "boot_anim.raw" -r 1/1 boot_anim%02d.png

    &#xA;

    But if I try to repack it with

    &#xA;

    ffmpeg -i boot_anim%02d.png -f rawvideo -pix_fmt rgb565 -framerate 10 -video_size 184x96 -r 1/1 "boot_anim.raw"

    &#xA;

    it only puts in the first two frames and nothing else. I have also tried libx264 and putting in vcodecs manually. Same result. I'm new to ffmpeg and Linux overall.

    &#xA;

    Here is the full output :

    &#xA;

    ffmpeg version N-98716-gb40dd2f Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04)&#xA;  configuration: --enable-encoder=png --enable-decoder=png&#xA;  libavutil      56. 58.100 / 56. 58.100&#xA;  libavcodec     58.100.100 / 58.100.100&#xA;  libavformat    58. 50.100 / 58. 50.100&#xA;  libavdevice    58. 11.101 / 58. 11.101&#xA;  libavfilter     7. 87.100 /  7. 87.100&#xA;  libswscale      5.  8.100 /  5.  8.100&#xA;  libswresample   3.  8.100 /  3.  8.100&#xA;Input #0, image2, from &#x27;boot_anim%02d.png&#x27;:&#xA;  Duration: 00:00:00.44, start: 0.000000, bitrate: N/A&#xA;    Stream #0:0: Video: png, rgba(pc), 184x96, 25 fps, 25 tbr, 25 tbn, 25 tbc&#xA;File &#x27;boot_anim.raw&#x27; already exists. Overwrite? [y/N] y&#xA;Stream mapping:&#xA;  Stream #0:0 -> #0:0 (png (native) -> rawvideo (native))&#xA;Press [q] to stop, [?] for help&#xA;[swscaler @ 0x556d6993d940] full chroma interpolation for destination format &#x27;rgb565le&#x27; not yet implemented&#xA;Output #0, rawvideo, to &#x27;boot_anim.raw&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.50.100&#xA;    Stream #0:0: Video: rawvideo (RGB[16] / 0x10424752), rgb565le, 184x96, q=2-31, 282 kb/s, 1 fps, 1 tbn, 1 tbc&#xA;    Metadata:&#xA;      encoder         : Lavc58.100.100 rawvideo&#xA;frame=    2 fps=0.0 q=-0.0 Lsize=      69kB time=00:00:02.00 bitrate= 282.6kbits/s dup=0 drop=9 speed= 871x    &#xA;video:69kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.000000%&#xA;

    &#xA;

    Any help appreciated !

    &#xA;

  • ffmpeg can not open video file while PotPlayer and VLCPlayer can

    13 décembre 2020, par popova-ksiusha912

    Win10

    &#xA;

    Video file(21.83MB) :https://www.mediafire.com/file/7b7w8ssio32qo2p/sample.flv/file

    &#xA;

    Pot Player and VLC Player can open this file without any problem.

    &#xA;

    But ffmpeg,ffplay,ffprobe can not open it.

    &#xA;

    Is there any way to make ffmpeg recognize this video file ?

    &#xA;

    C:\external>ffmpeg -v 9 -loglevel 99 -i sample.flv&#xA;ffmpeg version n4.3.1-26-gca55240b8c Copyright (c) 2000-2020 the FFmpeg developers&#xA;built with gcc 9.3-win32 (GCC) 20200320&#xA;configuration: --prefix=/ffbuild/prefix --pkg-config-flags=--static --pkg-config=pkg-config --cross-prefix=x86_64-w64-mingw32- --arch=x86_64 --target-os=mingw32 --enable-version3 --disable-debug --disable-w32threads --enable-pthreads --enable-iconv --enable-zlib --enable-libxml2 --enable-libfreetype --enable-libfribidi --enable-gmp --enable-lzma --enable-fontconfig --enable-opencl --enable-libvmaf --disable-vulkan --enable-libvorbis --enable-amf --enable-libaom --disable-avisynth --enable-libdav1d --disable-libdavs2 --enable-ffnvcodec --enable-cuda-llvm --disable-libglslang --enable-libass --enable-libbluray --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvpx --enable-libwebp --enable-libmfx --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librav1e --disable-librubberband --enable-schannel --enable-sdl2 --enable-libsoxr --enable-libsrt --enable-libtwolame --disable-libvidstab --disable-libx264 --disable-libx265 --disable-libxavs2 --disable-libxvid --enable-libzimg --extra-cflags=-DLIBTWOLAME_STATIC --extra-cxxflags= --extra-ldflags=-pthread --extra-libs=-lgomp&#xA;libavutil 56. 51.100 / 56. 51.100&#xA;libavcodec 58. 91.100 / 58. 91.100&#xA;libavformat 58. 45.100 / 58. 45.100&#xA;libavdevice 58. 10.100 / 58. 10.100&#xA;libavfilter 7. 85.100 / 7. 85.100&#xA;libswscale 5. 7.100 / 5. 7.100&#xA;libswresample 3. 7.100 / 3. 7.100&#xA;Splitting the commandline.&#xA;Reading option &#x27;-v&#x27; ... matched as option &#x27;v&#x27; (set logging level) with argument &#x27;9&#x27;.&#xA;Reading option &#x27;-loglevel&#x27; ... matched as option &#x27;loglevel&#x27; (set logging level) with argument &#x27;99&#x27;.&#xA;Reading option &#x27;-i&#x27; ... matched as input url with argument &#x27;sample.flv&#x27;.&#xA;Finished splitting the commandline.&#xA;Parsing a group of options: global .&#xA;Applying option v (set logging level) with argument 9.&#xA;Successfully parsed a group of options.&#xA;Parsing a group of options: input url sample.flv.&#xA;Successfully parsed a group of options.&#xA;Opening an input file: sample.flv.&#xA;[NULL @ 000001e044da4580] Opening &#x27;sample.flv&#x27; for reading&#xA;[file @ 000001e044da4e80] Setting default whitelist &#x27;file,crypto,data&#x27;&#xA;Probing flv score:100 size:2048&#xA;Probing mp3 score:1 size:2048&#xA;[flv @ 000001e044da4580] Format flv probed with size=2048 and score=100&#xA;[flv @ 000001e044da4580] Before avformat_find_stream_info() pos: 13 bytes read:32768 seeks:0 nb_streams:0&#xA;[flv @ 000001e044da4580] type:18, size:626, last:-1, dts:0 pos:21&#xA;[flv @ 000001e044da4580] type:8, size:4, last:-1, dts:0 pos:662&#xA;[flv @ 000001e044da4580] 1 AF 0&#xA;[flv @ 000001e044da4580] type:8, size:287, last:-1, dts:0 pos:681&#xA;[flv @ 000001e044da4580] 1 AF 0&#xA;[flv @ 000001e044da4580] type:9, size:13245, last:-1, dts:0 pos:983&#xA;[flv @ 000001e044da4580] 0 27 0&#xA;[NULL @ 000001e044e4bd80] missing picture in access unit with size 13240&#xA;[extract_extradata @ 000001e044e50600] No start code is found.&#xA;[flv @ 000001e044da4580] After avformat_find_stream_info() pos: 14235 bytes read:65845 seeks:3 frames:1&#xA;sample.flv: could not find codec parameters&#xA;Input #0, flv, from &#x27;sample.flv&#x27;:&#xA;Metadata:&#xA;d_cate : 1&#xA;d_client : 10001&#xA;dy_app_version : 6.3.6.1&#xA;dy_device_model : HONOR YAL-AL50 YAL-AL50&#xA;dy_level : Level51&#xA;dy_live_start_time: Sat Nov 28 22:05:50 GMT&#x2B;08:00 2020&#xA;dy_location : null&#xA;dy_network : 4G 4&#xA;dy_os_version : 29&#xA;dy_profile : High&#xA;dy_pusher_version: 1.3.3&#xA;dy_timezone : Asia/Shanghai?&#xA;hasWatermark : 1&#xA;encoder : Lavf56.40.101&#xA;cdn_ip : 61.156.196.105&#xA;Duration: 00:01:14.46, start: 0.000000, bitrate: N/A&#xA;Stream #0:0, 1, 1/1000: Audio: aac, 44100 Hz, stereo, 98 kb/s&#xA;Stream #0:1, 0, 1/1000: Video: h264, 1 reference frame, none, 2048 kb/s, 1k tbn&#xA;Successfully opened the file.&#xA;At least one output file must be specified&#xA;[AVIOContext @ 000001e044dadd40] Statistics: 65845 bytes read, 3 seeks&#xA;C:\external>&#xA;

    &#xA;