
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 (45)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (6843)
-
avfilter/af_superequalizer : fix out of array access
19 juin 2017, par Paul B Mahol -
How to access an image file using FFmpeg in a React Native (Android) project ?
9 septembre 2021, par Asp1reI made an app where I want to create a video from a png using FFmpeg in React Native but I'm stuck at my image file path part. FFmpeg uses the file system of the android so I can't really use paths like
./assets/img.png
. I need an absolute path - can't userequire('img.png')


Here is my FFmpeg code :


ffmpeg -loop 1 -i img.png -t 10 -r 1 -c:v libx264 output.mp4



How can I reach the
res
orassets
folder on an android ? Is there a way to bundle it into my app so on my android I can access it through an absolute path somehow ?

I searched a lot of questions similar to this and most of the answers are the use of
require('img.png')
but this doesn't work for me because the wayFFmpeg
works. Is there a way to access my image file withFFmpeg
in a React Native Android project ?

-
Access pixel data of each frame of a video in Ruby
23 janvier 2019, par RobinI want to be able to read/stream a video with Ruby, on Mac, and be able to get access to the pixel data for each frame.
What I’ve tried
-
https://github.com/streamio/streamio-ffmpeg
It’s good at splitting the video into frames, but I don’t know how to get access to the pixel data without saving each frame as an image first (or if it’s possible at all).
require 'streamio-ffmpeg'
movie = FFMPEG::Movie.new("flakes.mp4")
movie.screenshot("screenshots/screenshot_%d.jpg", { custom: %w(-vf crop=60:60:10:10), vframes: (movie.duration).to_i, frame_rate: movie.frame_rate/24 }, { validate: false })`-
https://github.com/wedesoft/hornetseye-ffmpeg
This seemed to have so much potential, but I don’t think it’s maintained anymore, and it’s not meant to be used on MacOS really, so I’m having issues installing it there (headers not found and such, and no way to configure it afaik).
Any idea what tool or method I could use for this use case ?
-