
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (52)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5958)
-
Android FFMPEG Compilation error : gpu_init.cc(454)] Passthrough is not supported, GL is disabled, ANGLE is
14 avril 2022, par Daniel RotnemerI came here to ask the experts. I'm working on an Android app that needs to capture camera preview frames from the NDK, for that I want to use OpenCV's
VideoCapture
(I properly integrated OpenCV with the NDK). The problem is that OpenCV'sVideoCapture
wont work on Android NDK since it has no backend, (Unable to read videos and start camera preview,VideoCapture.open(...)
returns alwaysfalse
). So here I decided to use FFMPEG as the backend for capturing videos with OpenCV.
I searched the web and found many tutorials that explain how to integrate FFMPEG with Android NDK, and I followed every one of them. The problem is that all what I've tried so far brought me to the same place, in which I get stuck with an error that completely blocks the entire process.

More Details :


I followed this tutorial for compiling FFMPEG for Android.


In order to build FFMPEG (before the part of linking it with Android NDK), I have to run a shell script that compiles the libraries to be linked with the project. When i just run the script i get this error :


[1268:0414/153141.454:ERROR:gpu_init.cc(454)] Passthrough is not supported, GL is disabled, ANGLE is


I searched the web about it and found many suggestions, most of them like this one suggest to enable WebGL. I checked it and made sure WebGL is enabled across all web browsers. But the error persists.


Screenshot :




build_script.sh :


#!/bin/bash
if [ -z "$ANDROID_NDK" ]; then
 echo "Please set ANDROID_NDK to the Android NDK folder"
 exit 1
fi

#Change to your local machine's architecture
HOST_OS_ARCH=windows-x86_64

function configure_ffmpeg {

 ABI=$1
 PLATFORM_VERSION=$2
 TOOLCHAIN_PATH=$ANDROID_NDK/toolchains/llvm/prebuilt/${HOST_OS_ARCH}/bin
 local STRIP_COMMAND

 # Determine the architecture specific options to use
 case ${ABI} in
 armeabi-v7a)
 TOOLCHAIN_PREFIX=armv7a-linux-androideabi
 STRIP_COMMAND=arm-linux-androideabi-strip
 ARCH=armv7-a
 ;;
 arm64-v8a)
 TOOLCHAIN_PREFIX=aarch64-linux-android
 ARCH=aarch64
 ;;
 x86)
 TOOLCHAIN_PREFIX=i686-linux-android
 ARCH=x86
 EXTRA_CONFIG="--disable-asm"
 ;;
 x86_64)
 TOOLCHAIN_PREFIX=x86_64-linux-android
 ARCH=x86_64
 EXTRA_CONFIG="--disable-asm"
 ;;
 esac

 if [ -z ${STRIP_COMMAND} ]; then
 STRIP_COMMAND=${TOOLCHAIN_PREFIX}-strip
 fi

 echo "Configuring FFmpeg build for ${ABI}"
 echo "Toolchain path ${TOOLCHAIN_PATH}"
 echo "Command prefix ${TOOLCHAIN_PREFIX}"
 echo "Strip command ${STRIP_COMMAND}"

 ./configure \
 --prefix=build/${ABI} \ # The path where the resulting libraries and headers will be installed after `make install` is run. The resulting directory structure is "build/{armeabi-v7a,arm64-v8a,x86,x86_64}/{include, lib}".
 --target-os=android \ # Target operating system name.
 --arch=${ARCH} \ # Target CPU architecture e.g. armv7-a.
 --enable-cross-compile \ # We are compiling for a different target architecture than the host.
 --cc=${TOOLCHAIN_PATH}/${TOOLCHAIN_PREFIX}${PLATFORM_VERSION}-clang \ # Path to the C compiler. In our case we're using clang. 
 --strip=${TOOLCHAIN_PATH}/${STRIP_COMMAND} \ # Path to the strip binary for our target architecture.
 --enable-small \ # Optimize for size instead of speed.
 --disable-programs \ # Do not build command line programs. We don't need them as our app will be interacting with the FFmpeg API. 
 --disable-doc \ # Do not build documentation.
 --enable-shared \ # Build shared libraries. We'll keep the FFmpeg .so files separate from our main shared library.
 --disable-static \ # Do not build static libraries.
 ${EXTRA_CONFIG} \
 --disable-everything \ # Disable all modules. To keep the library size to a minimum we will explicitly specify the modules to be built below.
 --enable-decoder=mp3 \ # Enable the MP3 decoder. For a list of supported decoders type ./configure --help.
 --enable-demuxer=mp3 # Enable the MP3 demuxer. For a list of supported demuxers type ./configure --help.

 return $?
}

function build_ffmpeg {

 configure_ffmpeg $1 $2

 if [ $? -eq 0 ]
 then
 make clean
 make -j12
 make install
 else
 echo "FFmpeg configuration failed, please check the error log."
 fi
}

build_ffmpeg armeabi-v7a 16
build_ffmpeg arm64-v8a 21
build_ffmpeg x86 16
build_ffmpeg x86_64 21



I searched the entire web for a solution, but found that no one is talking about this error in the context of integrating FFMPEG with android, so I've no idea how to solve this problem. Am I missing something or what ?


Versions :


Android studio 4.0.0
OpenCV 4.0.1
Windows 10 (x86_64)
Cloned the latest FFMPEG source code by running commandgit clone git://source.ffmpeg.org/ffmpeg.git
underD:\Develop
.

Thanks for reading this question so far, helpful ideas will be warmly welcomed.


-
record Linux Wayland/DRM screen using ffmpeg's kmsgrab device with superimposed webcam
7 février 2020, par nrdxpSetup is Linux, ffmpeg using kabylake iGPU.
I am capturing a running sway instance using the kmsgrab device, which requires the use of a hardware backend to coherently process the image on my hardware. Only VA API fits this bill. I want to overlay the webcam in the bottom right corner during encoding. However, attempts at manipulating the filter graph to accomplish this have been unsuccessful. This is ultimately for Twitch/Tube stream.
Right now, I am actually capturing the webcam to an sdl window, and simply recording the screen using separate instances of
ffmpeg
. This doesn’t actually solve my problem since the window is easily disguised by workspace switching or other windows.This is the workaround :
#!/usr/bin/env zsh
# record webcam and open it in sdl window
ffmpeg -v quiet -hide_banner \
-re -video_size 640X480 -hwaccel vaapi -vaapi_device /dev/dri/renderD128 -i /dev/video0 \
-vf 'format=nv12,hwupload' -c:v hevc_vaapi -f hevc - \
| ffmpeg -v quiet -i - -f sdl2 - &
# wait for webcam window to open
until swaymsg -t get_tree | grep 'pipe:' &>/dev/null; do
sleep 0.5
done
# position webcam in the bottom right corner of screen using sway
swaymsg floating enable
swaymsg resize set width 320 height 240
swaymsg move position 1580 795
swaymsg focus tiling
#screencast
ffmpeg -format bgra -framerate 60 -f kmsgrab -thread_queue_size 1024 -i - \
-f alsa -ac 2 -thread_queue_size 1024 -i hw:0 \
-vf 'hwmap=derive_device=vaapi,scale_vaapi=w=1920:h=1080:format=nv12' \
-c:v h264_vaapi -g 120 -b:v 3M -maxrate 3M -pix_fmt vaapi_vld -c:a aac -ab 96k -threads $(nproc) \
output.mkv
kill %1 -
Revision 36038 : Améliorations diverses dont l’encodage
10 mars 2010, par kent1@… — LogAméliorations diverses dont l’encodage