
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 (44)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
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
Sur d’autres sites (6050)
-
replace raw data in stream (ffmpeg)
28 novembre 2019, par KajunaI’ve got a video file from which I have extracted a data stream. Something like this
ffmpeg -y -i input.mp4 -map 0:3 -f rawvideo output.raw
I have made some modifications to the output.raw file, and now would like to replace the data in the original 0:3 stream with my modified version, while keeping all the metadata of the stream the same. I have been googling around with no success. Maybe I am not using the right wording.
Thanks
-
avformat : Append data in fill_buffer() when possible
30 juin 2013, par Michael Niedermayeravformat : Append data in fill_buffer() when possible
Data is appended in fill_buffer() when there is sufficient space left
and the data pointer only reset when needed.
Previously the data pointer was more often reset, loosing more seekback
space than otherwise needed.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
FFMPEG audio sample data
13 octobre 2015, par Nghĩa Trương ThanhI’m beginner to FFMPEG API and I need to process audio sample.
I see that audio sample data stored in AVFrame->data[0], but I don’t know how audio sample stored in FFMPEG AVFrame.For example :
There are 2 channels,frame->nb_samples = 64,
frame->linesize[0] = 256.I don’t know how audio sample data stored in frame->data[0].
Thanks,