Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (33)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5480)

  • avcodec/videotoolboxenc : Set profile (main/main10) on HEVC encode

    21 septembre 2020, par Harry Mallon
    avcodec/videotoolboxenc : Set profile (main/main10) on HEVC encode
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>
    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • Revision d35df2d8ea : High-level hooks for Profile 2 (10/12 bit) Adds some high-level hooks for profi

    5 avril 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_enums.h


     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/vp9_cx_iface.c



    High-level hooks for Profile 2 (10/12 bit)

    Adds some high-level hooks for profile 2 before further
    progress on the implementation.

    According to the definitiion in this patch :
    1. Profile 2 only supports 10 or 12 bit color but not 8
    2. Profile 2 supports all color sampling modes : 444, 422 and 420,
    and alpha plane.
    3. Profile 3 is currently undefined.

    Please consider the definition carefully and suggest modifications
    to the definition as needed.

    Change-Id : I5b284fc679e54ac5aee171af72fa7994cfd28995

  • Flutter FFMPEG : Error setting profile baseline

    9 avril 2021, par Raj Dhakad

    Flutter-ffmpeg unable to set profile parameter. (I need to use profile so the rendered video can be played on WhatsApp).

    &#xA;

    I am converting.bmp images into a mp4 video. Other I have tested other praramets and the work great it's only -profile:v which seems to have some problem.

    &#xA;

    Everything works fine unless I use -profile:v baseline.

    &#xA;

    void _runFFmpeg() async {&#xA;    var dir = await getApplicationDocumentsDirectory();&#xA;    var output = await getExternalStorageDirectory();&#xA;    String videoSize = &#x27;${ImageWidth}x$ImageSize&#x27;;&#xA;    print("${ImageWidth}x$ImageSize");&#xA;    var arguments = [&#xA;      "-y", // replace output file if it already exists&#xA;      "-framerate", "30", // framrate&#xA;      "-video_size", videoSize,&#xA;      "-pixel_format", "yuv420p",&#xA;      "-i", "${output.path}/frame_%d.bmp",  &#xA;      "-profile:v", "baseline",&#xA;      "-level", "3.0",&#xA;      "${output.path}/test.mp4"&#xA;    ];&#xA;    &#xA;    _flutterFFmpeg&#xA;        .executeWithArguments(arguments)&#xA;        .then((rc) => print("FFmpeg process exited with rc $rc"));&#xA; &#xA;&#xA;    print("Done Rendering");&#xA;  }&#xA;

    &#xA;

    Logs

    &#xA;

    D/flutter-ffmpeg(26672): Running FFmpeg with arguments: [-y, -framerate, 30, -video_size, 720x600, -pixel_format, yuv420p, -i, /storage/emulated/0/Android/data/com.example.test/files/frame_%d.bmp, -profile:v, baseline, -level, 3.0, /storage/emulated/0/Android/data/com.example.test/files/test.mp4].&#xA;I/mobile-ffmpeg(26672): ffmpeg version v4.4-dev-416&#xA;I/mobile-ffmpeg(26672):  Copyright (c) 2000-2020 the FFmpeg developers&#xA;I/mobile-ffmpeg(26672):&#xA;I/mobile-ffmpeg(26672):   built with Android (6454773 based on r365631c2) clang version 9.0.8 (https://android.googlesource.com/toolchain/llvm-project 98c855489587874b2a325e7a516b99d838599c6f) (based on LLVM 9.0.8svn)&#xA;I/mobile-ffmpeg(26672):   configuration: --cross-prefix=aarch64-linux-android- --sysroot=/files/android-sdk/ndk/21.3.6528147/toolchains/llvm/prebuilt/linux-x86_64/sysroot --prefix=/home/taner/Projects/mobile-ffmpeg/prebuilt/android-arm64/ffmpeg --pkg-config=/usr/bin/pkg-config --enable-version3 --arch=aarch64 --cpu=armv8-a --cc=aarch64-linux-android24-clang --cxx=aarch64-linux-android24-clang&#x2B;&#x2B; --extra-libs=&#x27;-L/home/taner/Projects/mobile-ffmpeg/prebuilt/android-arm64/cpu-features/lib -lndk_compat&#x27; --target-os=android --enable-neon --enable-asm --enable-inline-asm --enable-cross-compile --enable-pic --enable-jni --enable-optimizations --enable-swscale --enable-shared --enable-v4l2-m2m --disable-outdev=fbdev --disable-indev=fbdev --enable-small --disable-openssl --disable-xmm-clobber-test --disable-debug --enable-lto --disable-neon-clobber-test --disable-programs --disable-postproc --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages --disable-static --disable-sndio --disable-schannel --disable-securetransport --disable-xlib --disable-cuda --disable-cuvid --disable-nvenc --disable-vaapi --disable-vdpau --disable-videotoolbox --disable-audiotoolbox --disable-appkit --disable-alsa --disable-cuda --disable-cuvid --disable-nvenc --disable-vaapi --disable-vdpau --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-gmp --enable-gnutls --enable-libmp3lame --enable-libass --enable-iconv --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-libopencore-amrnb --enable-libshine --enable-libspeex --enable-libwavpack --enable-libkvazaar --enable-libx264 --enable-gpl --enable-libxvid --enable-gpl --enable-libx265 --enable-gpl --enable-libvidstab --enable-gpl --enable-libilbc --enable-libopus --enable-libsnappy --enable-libsoxr --enable-libaom --enable-libtwolame --disable-sdl2 --enable-libvo-amrwbenc --enable-zlib --enable-mediacodec&#xA;I/mobile-ffmpeg(26672):   libavutil      56. 55.100 / 56. 55.100&#xA;I/mobile-ffmpeg(26672):   libavcodec     58. 96.100 / 58. 96.100&#xA;I/mobile-ffmpeg(26672):   libavformat    58. 48.100 / 58. 48.100&#xA;I/mobile-ffmpeg(26672):   libavdevice    58. 11.101 / 58. 11.101&#xA;I/mobile-ffmpeg(26672):   libavfilter     7. 87.100 /  7. 87.100&#xA;I/mobile-ffmpeg(26672):   libswscale      5.  8.100 /  5.  8.100&#xA;I/mobile-ffmpeg(26672):   libswresample   3.  8.100 /  3.  8.100&#xA;I/mobile-ffmpeg(26672): Input #0, image2, from &#x27;/storage/emulated/0/Android/data/com.example.test/files/frame_%d.bmp&#x27;:&#xA;I/mobile-ffmpeg(26672):   Duration:&#xA;I/mobile-ffmpeg(26672): 00:00:06.03&#xA;I/mobile-ffmpeg(26672): , start:&#xA;I/mobile-ffmpeg(26672): 0.000000&#xA;I/mobile-ffmpeg(26672): , bitrate:&#xA;I/mobile-ffmpeg(26672): N/A&#xA;I/mobile-ffmpeg(26672):&#xA;I/mobile-ffmpeg(26672):     Stream #0:0&#xA;I/mobile-ffmpeg(26672): : Video: bmp, yuv420p, 720x600&#xA;I/mobile-ffmpeg(26672): ,&#xA;I/mobile-ffmpeg(26672): 30 fps,&#xA;I/mobile-ffmpeg(26672): 30 tbr,&#xA;I/mobile-ffmpeg(26672): 30 tbn,&#xA;I/mobile-ffmpeg(26672): 30 tbc&#xA;I/mobile-ffmpeg(26672):&#xA;I/mobile-ffmpeg(26672): Stream mapping:&#xA;I/mobile-ffmpeg(26672):   Stream #0:0 -> #0:0&#xA;I/mobile-ffmpeg(26672):  (bmp (native) -> h264 (libx264))&#xA;I/mobile-ffmpeg(26672):&#xA;I/mobile-ffmpeg(26672): Press [q] to stop, [?] for help&#xA;W/mobile-ffmpeg(26672): [graph 0 input from stream 0:0 @ 0x7280948480] sws_param option is deprecated and ignored&#xA;E/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100] Error setting profile baseline.&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100] Possible profiles:&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]  baseline&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]  main&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]  high&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]  high10&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]  high422&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]  high444&#xA;I/mobile-ffmpeg(26672): [libx264 @ 0x7291ba8100]&#xA;E/mobile-ffmpeg(26672): Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height&#xA;I/mobile-ffmpeg(26672): Conversion failed!&#xA;D/flutter-ffmpeg(26672): FFmpeg exited with rc: 1&#xA;E/UIFirst (26672): failed to open /proc/26672/stuck_info, No such file or directory&#xA;I/chatty  (26672): uid=12724(com.example.test) identical 2 lines&#xA;3&#xA;E/UIFirst (26672): failed to open /proc/26672/stuck_info, No such file or directory&#xA;I/chatty  (26672): uid=12724(com.example.test) identical 1 line&#xA;E/UIFirst (26672): failed to open /proc/26672/stuck_info, No such file or directory&#xA;

    &#xA;

    Flutter doctor -v

    &#xA;

    [√] Flutter (Channel stable, 2.0.1, on Microsoft Windows [Version 10.0.18362.836], locale en-US)&#xA;    • Flutter version 2.0.1 at C:\Users\Dell\flutter&#xA;    • Framework revision c5a4b4029c (5 weeks ago), 2021-03-04 09:47:48 -0800&#xA;    • Engine revision 40441def69&#xA;    • Dart version 2.12.0&#xA;[√] Android toolchain - develop for Android devices (Android SDK version 29.0.3)&#xA;    • Android SDK at C:\Users\Dell\AppData\Local\Android\sdk&#xA;    • Platform android-30, build-tools 29.0.3&#xA;    • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java&#xA;    • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b04)&#xA;    • All Android licenses accepted.&#xA;[√] Chrome - develop for the web&#xA;    • Chrome at C:\Program Files (x86)\Google\Chrome\Application\chrome.exe&#xA;[√] Android Studio (version 3.6)&#xA;    • Android Studio at C:\Program Files\Android\Android Studio&#xA;    • Flutter plugin version 45.1.1&#xA;    • Dart plugin version 192.7761&#xA;    • Java version OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b04)&#xA;[√] VS Code (version 1.55.0)&#xA;    • VS Code at C:\Users\Dell\AppData\Local\Programs\Microsoft VS Code&#xA;    • Flutter extension version 3.21.0&#xA;[√] Connected device (2 available)&#xA;    • RMX1801 (mobile) • 8843cc23 • android-arm64  • Android 10 (API 29)&#xA;    • Chrome (web)     • chrome   • web-javascript • Google Chrome 89.0.4389.114&#xA;• No issues found!&#xA;

    &#xA;

    I also have tried changing package to min-gpl, https-gpl and video but no change.

    &#xA;