
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (52)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)
Sur d’autres sites (3862)
-
Orange pi 4 lts multimedia acceleration on rk3399 ( 4k hevc ) with MPP and hevc_rkmpp decoder
7 juillet 2023, par DEMOSS-PRODear friends and specialists in SBC. Need your help in understanding how to get media acceleration with a decoder h264_rkmpp and hevc_rkmpp. I read the theme in armbian forum about multimedia library for rk3399, but it is old theme and not for OPI4 LTS version. i can't find any image contain armbian buster for my OPI.
I find some theme in Friendly elec forums, Github sources, but after two weeks of continuous attempts to compile a working version of ffmpeg and mpv, nothing worked for me. My hands drop. This task seems already overwhelming, but maybe someone can still help to get acceleration for mpv without using DM.


https://www.armbian.com/orange-pi-4-lts/ - there is page for OPI 4 LTS image of armbian
Media Process Platform (MPP) module - there is information about MPP. i have succesfull compile it
https://forum.armbian.com/topic/23146-media-acceleration/ some questions about MM aceleration. some URLs is outdated


-
FFmpeg rotated transparent images colorfill not working properly
18 août 2016, par SebSobI am scaling and rotating a transparent (spade.png) image and placing it as overlay on an input image and save the output.png. This is my command :
ffmpeg -y -i input.png -i spade.png -filter_complex [1]scale=120:114,setsar=1,format=bgra,rotate=0.78 :c=none:ow=rotw(0.78):oh=roth(0.78)[s] ;[0][s]overlay=728-114*sin(0.78):177[out] -pix_fmt bgra -strict experimental -s 640x360 -map [out] output.png
shovel.png (250x238) :
When i don’t scale spade.png, it is displaying ok :
But when i scale + rotate spade.png, the colorfill is not working properly :
Is this a known ffmpeg bug ? Or am I using the -filter_complex parameters in the wrong order ? Should I use another pix_frmt ? Any idea’s ? Thanks
-
Can't get Accord-FFMPEG-Package working in my .NET-Core-Application
6 août 2019, par FlixRoI have an ASP.NET-CORE 2.1-Application in which I am trying to use the
Accord.Video.FFMPEG -Version 3.8.0
-Package. I’ve tried to install it via NuGet-Package-Manager as well as via the Package-Manager-Console.(x64 AND normal Version)Installing works like a charm but as soon as I am trying to set the using-directives it does not work.
using Accord.Video;
works
If I try this :using Accord.Video.FFMPEG;
i get the following error..csproj-Files are set like this :
If set up for example a new
VideoFileWriter
there is no reference to the Accord-Package.Is there some incompatibility that I am missing ?