
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 (32)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (4973)
-
Extract image of every frame of a video using react-native-ffmpeg
1er octobre 2020, par EdGI have looked all over the internet to get a way to extract image of everyframe of a video using react-native-ffmpeg. I am making a mobile app and I want to show all per frame images on the video timeline. I want to do this natively on mobile so that I can utilise hardware power of mobile. That is the reason I am looking for react-native-ffmpeg kind of library. Am I in the right direction ? This npmjs.com/package/react-native-ffmpeg is what I am trying to use. I need to know the command to do the job.


-
armv6 : Accelerate ff_imdct_half for general case (mdct_bits != 6)
11 juillet 2014, par Ben Avisonarmv6 : Accelerate ff_imdct_half for general case (mdct_bits != 6)
The previous implementation targeted DTS Coherent Acoustics, which only
requires mdct_bits == 6. This relatively small size lent itself to
unrolling the loops a small number of times, and encoding offsets
calculated at assembly time within the load/store instructions of each
iteration.In the more general case (codecs such as AAC and AC3) much larger arrays
are used - mdct_bits == [8, 9, 11]. The old method does not scale for
these cases, so more integer registers are used with non-unrolled versions
of the loops (and with some stack spillage). The postrotation filter loop
is still unrolled by a factor of 2 to permit the double-buffering of some
VFP registers to facilitate overlap of neighbouring iterations.I benchmarked the result by measuring the number of gperftools samples
that hit anywhere in the AAC decoder (starting from aac_decode_frame())
or specifically in ff_imdct_half_c / ff_imdct_half_vfp, for the same
example AAC stream :Before After
Mean StdDev Mean StdDev Confidence Change
aac_decode_frame 2368.1 35.8 2117.2 35.3 100.0% +11.8%
ff_imdct_half_* 457.5 22.4 251.2 16.2 100.0% +82.1%Signed-off-by : Martin Storsjö <martin@martin.st>
-
Raspberry Pi HDMI to Virtual Input Device using UV4L Raspidisp
8 mai 2021, par Darshan PatelI'm trying to convert Raspberry pi hdmi as input device, and then I want to restream that using ffmpeg.
I have used below command to add input device.


uv4l --driver raspidisp --display 0 --framerate 5 --resolution 0 --auto-video_nr



It's showing below output when run.


<notice> [core] Trying to loading driver 'raspidisp' from built-in drivers...
<notice> [core] Loading driver 'raspidisp' from external plug-in's...
<notice> [driver] RaspiDisp Video4Linux2 Driver built Jan 6 2019
<notice> [core] Device detected!
<warning> [core] Cannot create /dev/video0 because file already exists
<warning> [core] Cannot create /dev/video1 because file already exists
<warning> [core] Cannot create /dev/video2 because file already exists
<notice> [core] Registering device node /dev/video3
</notice></warning></warning></warning></notice></notice></notice></notice>


It is added as /dev/Video3.
Then I am trying to restream it using ffmpeg as below command.


sudo ffmpeg -r 25 -s 1280x720 -f video4linux2 -i /dev/video3 -f mpegts udp://192.168.1.109:1234



It gives below error.


[video4linux2,v4l2 @ 0xe64200] The driver does not permit changing the time per frame
[video4linux2,v4l2 @ 0xe64200] Time per frame unknown
[video4linux2,v4l2 @ 0xe64200] mmap: No such device
/dev/video3: No such device



Any help or suggestions greatly appreciated.