
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (34)
-
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (7382)
-
how to automatically oversample and downsample when using filters ?
4 juin 2021, par Yue WangI am researching avfilters. Say I have an audio with sample rate
s
, and bit depthd
,

What I want to do is to write a graph that


- 

- upsample
s
by 4x, and set precision to 64bit float - apply some biquad filters with 64bit precision
- downsample by 4x back to
s
, and set bit depth back tod
.








The reason to oversample is to get better filtering result by antialiasing, and the reason to downsample is to stream using the original source format.


I don't know if there's way that I can do it automatically in the graph.


ashowinfo
could print out the sample rate, but seems there's no way to use the value later in the pipeline.

asoftclip
has aoversample
factor. but it's not available in other filters.

- upsample
-
Can I stream 2 AVI or MP4 files to a user as if it were 1 file ?
12 mars 2015, par MacmeeI have several video files such as :
bobs_video_part_1.mp4
bobs_video_part_2.mp4
bobs_video_part_3.mp4and instead of sending the user links to download each video separately :
http://mynodejsserver.com/videos/bobs_video_part_1.mp4
http://mynodejsserver.com/videos/bobs_video_part_2.mp4
http://mynodejsserver.com/videos/bobs_video_part_3.mp4I want to be able to give the user just 1 link :
http://mynodejsserver.com/videos/bobs_video.mp4
I can combine the videos using something like ffmpeg but then I can’t give the user a link to the video in real time, I have to wait for ffmpeg to finish. I was thinking conceptually that this would work by doing something along the lines of :
1. open file streams for each video and sum them to calculate total content-length
2. open a stream/pipe back to the user and start sending data for bobs_video_part_1.mp4
3. in that same stream start sending back bobs_video_part_2.mp4
4. keep sending back the next video to the same stream/pipe to the userwould something like this work ? Since I want to send each video in order anyway I don’t see why I can’t send each video as if it were part of the same video and the client doing the download request would never know.
-
"Uncurve" Cinerama-like videos
2 août 2021, par silentI'm pretty new to ffmpeg and I recently found interesting videos that are trying to simulate the Cinerama technology back from 1950x by curving the final video.


Here is the screenshot how it looks like during the playback :


I was wondering if it's possible to make this kind of picture back to "normal" rectangular shape ?
Here's a small (30 seconds, 48MB) example of how it looks like : https://ufile.io/8b0139j0


Thanks !