
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (7)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (3472)
-
How do I read an mp4 file directly into moviepy from S3 ?
9 novembre 2022, par racket99Any idea how to read an S3 mp4 file directly into moviepy ?



I have tried,



import boto3
from io import BytesIO
from moviepy.editor import *

client = boto3.client('s3')
obj = client.get_object(Bucket='some-bucket', Key='some-file')
VideoFileClip(BytesIO(obj['Body'].read())) 




but I am getting,



Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/<path>/lib/python3.6/site-packages/moviepy/video/io/VideoFileClip.py", line 91, in __init__
fps_source=fps_source)
File "/<path>/lib/python3.6/site-packages/moviepy/video/io/ffmpeg_reader.py", line 33, in __init__
fps_source)
File "/<path>/lib/python3.6/site-packages/moviepy/video/io/ffmpeg_reader.py", line 243, in ffmpeg_parse_infos
is_GIF = filename.endswith('.gif')
AttributeError: '_io.BytesIO' object has no attribute 'endswith'
</path></path></path></module></stdin>



where path is my virtual environment


-
How to open anullsrc input ?
5 mai 2022, par dgsgsdgsgdhddhgI'm trying :


avformat_open_input(
 &input_context,
 "anullsrc", 
 NULL,
 NULL
 );



That however does not work and
input_context
remains NULL.

The 3rd argument,
NULL
, is an optionalAVInputFormat
.
https://ffmpeg.org/doxygen/trunk/group__lavf__decoding.html#gac05d61a2b492ae3985c658f34622c19d

fmt If non-NULL, this parameter forces a specific input format. Otherwise the format is autodetected.


I wanted to supply it by first creating the
AVInputFormat
withav_find_input_format
- that however fails to find the format (lavfi
), because it seems not to be registered in file./libavformat/allformats.c
even though it exists in./libavdevice/lavfi.c
.

Edit


I might have found an issue. When I do :


$ ffmpeg -v 0 -demuxers | grep lavfi



The output is :


D lavfi Libavfilter virtual input device




However, when I do :


main | grep lavfi



Where main is my program which includes :


while ((fmt = av_demuxer_iterate(&i))) 
 printf("%s\n", fmt->name); 



I get no output (I confirm that some demuxers are listed if I don't grep for lavfi).


So it seems then, that
libavformat.h
does not know aboutlavfi
demuxer, whereas ffmpeg does. So it seems I need to fix this issue now.

-
No Audio recorded with FFMPEG ALSA Loopback
6 août 2019, par Dhruvin BhattI am trying to record screen with audio. I played an mp4 file with audio and video in browser and I tried the command specified here, and tried to save output to mp4 as well as mkv files. But the screen records with no audio. I have installed Alsa loopback with
sudo apt-get install linux-image-extra-virtual
modprobe snd-aloop
The outputs of
arecord -l
andaplay -l
are arecord -l aplay -lI have tried all hw devices like
hw:0
,hw:2
,hw:0,1
,hw:0,1,0
I am using Ubuntu 18.04 with FFMPEG version 4.0.3-1 18.04.york0
I have faced same issue with FFMPEG version 3.4.4-0ubuntu0.18.04.1
The same issue is also faced in Ubuntu 16.04 with FFMPEG version 4.0.3-1 16.04.york0.
Please help me solve this. I can not use any other packages like Simple-Screen-Recorder or PulseAudio, as the command which I am trying to run for an application uses only FFMPEG and Alsa Loopback, and is not changeable.