
Recherche avancée
Autres articles (105)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12616)
-
FFMPEG on Ubuntu server introducing green screen in the intro for IOS devices, ex : Safari on Mac and iPad
15 mars 2021, par Hyder HussainI have been using the ffmpeg command on my local to encode the videos and get a dash file to play it. The videos processed on my local machine (Mac) play perfectly, but the same code on my EC2 instance ubuntu server produces this green screen for 5 secs at the beginning only in Safari and iPad. I don't seem to understand the problem. Is there anyway to solve this issue. Please find screenshot of the behaviour. Screenshot showing the behaviour for first 5 seconds


-
ffmpeg-php installation on ubuntu 14.10 aws server
11 août 2015, par TannyI have requirement to install ffmpeg and ffmpeg-php on aws server. I installed the ffmpeg according to the guide given on the ubuntu server group(as I need to install this on ubuntu 14.04). I enabled all the compiled option of ffmpeg, But still I find this error when i fire configure command on terminal.
ubuntu@ip-172-31-31-166 : /ffmpeg-php-0.6.2$ sudo ./configure
....
....
configure : error : ffmpeg shared libraries not found. Make sure ffmpeg is compiled as shared libraries using the —enable-shared optionI had go through on given post
[https://vishnulinux.wordpress.com/2011/08/29/ffmpeg-shared-libraries-not-found/]
Configure the FFmpeg-php with –with-ffmpeg optionand fire the below command
./configure –with-ffmpeg=/usr/local/bin/ffmpegI found the same error. Please help. Thanks in advance.
-
Record audio inside docker container from Ubuntu host
13 mai 2020, par abhinavkulkarniI have a basic
Dockerfile
as follows :


FROM ubuntu:16.04

RUN apt-get update \
 && apt-get install -y pulseaudio alsa-utils alsa-base ffmpeg 




On my host, I am able to record an audio file as follows :



ffmpeg -f pulse -i default -f wav out.wav




I would like to do the same inside the docker container.



How do I go about this ?



Thanks !