
Recherche avancée
Autres articles (40)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (5037)
-
Can't decode HEVC video with DXVA2 and ffmpeg
10 mai 2018, par IgorI can’t use DXVA2 hardware acceleration for decoding of HEVC video with ffmpeg. DXVA2 for H.264 works fine.
I compiled an official example hw_decode.c from ffmpeg sources :
https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/hw_decode.c
When I call av_send_packet() it performs a callback assigned in AVCodecContext->get_format and returns only AV_PIX_FMT_YUV420P for HEVC video instead of AV_PIX_FMT_DXVA2_VLD for all H.264 videos. So HW decoding doesn’t work.
Software decoding of HEVC works without problems.
MPC-HC plays fine HEVC video with DXVA2 (CPU loading is low and Task Manager shows work of Video decoder in GPU details). My video card is Geforce 1060.
-
is there any functional build of ffmpeg to android
11 mai 2018, par Rafael LimaI’ve searching the last 3 days for a usable API for android access ffmpeg.
Since FFMpeg group doesn’t release an official lib for android I found several paralel projects trying to build it.So it brings me to my nightmare that is called compile.
i’ve followed all these tutorials : https://trac.ffmpeg.org/wiki/CompilationGuide/Android
And others found in different places. but none of them build
NONE OF THEM IS LESS THAN 3 YEARS OLD
Sorry for the caps, but it is frustrating... no ffmpeg build projects I found deal with nkd above 14 and google doesn’t keep in archive nkds older than that, so even if i agree with get all outdated libraries source i cant reproduce de compiler i cant download the same ndk...
The only api i manage to download with a functional build of ffmpeg probably was compiled without some codecs, because on my tests i can only handle few types of videos
===============================================================
The question is, does anyone know an actual, stable, project for building ffmpeg to android ?
I’m even willing to pay in order to get a working version of it
-
Outputting file details using ffprobe in ffmpeg AWS Lambda layer
17 février 2021, par GracieI am trying to output the details of an audio file with ffmpeg using the ffprobe option. But it is just returning 'null' at the moment ? I have added the ffmpeg layer in Lambda. can anyone spot why this is not working ?



const { spawnSync } = require("child_process");
const { readFileSync, writeFileSync, unlinkSync } = require("fs");
const util = require('util');
var fs = require('fs');
let path = require("path");

exports.handler = (event, context, callback) => {

 spawnSync(
 "/opt/bin/ffprobe",
 [
 `var/task/myaudio.flac`
 ],
 { stdio: "inherit" }
 );
};




This is the official AWS Lambda layer I am using, it is a great prooject but a little lacking in documentation.



https://github.com/serverlesspub/ffmpeg-aws-lambda-layer