
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (69)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (8941)
-
Android NDK Build FFMPEG in 2021
19 janvier 2023, par KyrosI'm working on an android app, and I have to convert
webm
files tomp3
.
I really want to make a custom ffmpeg build, because it reduces the ffmpeg executable size to only 2MB.

My library works absolutely fine when running on my PC, but i'm struggling to build it for android... It seems like NDK architecture has changed and tutorials are outdated, and I can't find a proper and recent guide for android compiling...


I also would like to target all architectures (
aarch64
,armv7
,i686
, andx86_64
)...

I've been on this for hours, fixed many errors, but still nothing has worked ><.
Please help me ! :


PS. I'm compiling on Linux, here is my configuration script :


#!/bin/bash

API=31 # target android api

OUTPUT=/home/romain/dev/android/ffmpeg_build

NDK=/home/romain/android-sdk/ndk/23.0.7599858
TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64
SYSROOT=$TOOLCHAIN/sysroot

TOOL_PREFIX="$TOOLCHAIN/bin/aarch64-linux-android"

CC="$TOOL_PREFIX$API-clang"
CXX="$TOOL_PREFIX$API-clang++"

./configure \
 --prefix=$OUTPUT \
 --target-os=android \
 --arch=$ARCH \
 --cpu=$CPU \
 --disable-everything \
 --disable-everything \
 --disable-network \
 --disable-autodetect \
 --enable-small \
 --enable-decoder=opus,vorbis \
 --enable-demuxer=matroska \
 --enable-muxer=mp3 \
 --enable-protocol=file \
 --enable-filter=aresample \
 --enable-libshine \
 --enable-encoder=libshine \
 --cc=$CC \
 --cxx=$CXX \
 --sysroot=$SYSROOT \
 --extra-cflags="-0s -fpic"

make
make install



-
ffmpeg on google app engine or other alternatives
6 décembre 2022, par Jon LucThis isn’t really a problem with any specific bit of code more just a general question about how I would host a ffmpeg function within a severless function like google app engine. Basically I have a block of code that takes every n frame a video and uploads it to google cloud storage. I have tried implementing such a solution with Firebase functions but to no avail. I think the primary problem is really to do with file storage, from my undetnsdjng data should be written to the tmp folder.


So if anyone can outline exactly how I could host this on app engine that would be great, please be very specific and don’t assumeI know anything because I’ve only really worked with functions :)


Thanks so much



//Essentially this but on app engine or any other severless environment

try {
 const process = new ffmpeg('star_wars_film_scene.mp4');
 process.then(function(video) {
 // Callback mode
 video.fnExtractFrameToJPG('helpers/frames/', {
 every_n_frames: 500
 
 }, function(error, files) {
 if (error) {
 console.log(error);
 return;
 }
 ProcessFrames(files);
 });
 }, function(err) {
 console.log(err);
 });
 } catch (e) {
 console.log('Houston, we have a problem')
 console.log(e.code);
 console.log(e.msg);
 }




-
avcodec/sanm : better ANIMv1 engine support
11 mars, par Manuel Laussavcodec/sanm : better ANIMv1 engine support
clear the front buffer with color 0 on the first FOBJ.
Fixes a lot of Rebel Assault 1 videos and Rebel Assault 2 space
scenes (e.g. 08PLAY.SAN which consists only of codec1/2/21 objects
which only ever touch parts of the buffer).for ANIMv1 (Rebel Assault 1) : set palette index 0 to all zeroes.
This fixes a lot of stray colors in e.g L1HANGAR.ANM, L2INTRO.ANM,
space scenes.Esp in RA1, there are a lot of FRME objects which don't contain
any video data (prebuffering some audio only). Account for that.In RA1 L2PLAY.ANM there are a few unaligned FOBJs, handle this
in a generic way.Signed-off-by : Manuel Lauss <manuel.lauss@gmail.com>