
Advanced search
Other articles (107)
-
Websites made with MediaSPIP
2 May 2011, byThis page lists some websites based on MediaSPIP.
-
Encoding and processing into web-friendly formats
13 April 2011, byMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Qu’est ce qu’un masque de formulaire
13 June 2013, byUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
On other websites (9865)
-
Shoutcast send MP3 data
10 April 2017, by RomMerI get mp3 data an audio stream (.m3u8) using ffmpeg.
I want to send it to a Shoutcast server using Node.JS
Everything is ok and the server is waiting for me to send the data but i have few problems :When i send my raw mp3, the data I send doesn’t look like data Winamp sends for example
that’s what i send (got it from wireshark)
0000 ...!0......[v...
0010 ......Q......a..
0020 ........^......U
0030 Q’A...C...&z...2
0040 ..........l"f...
0050 %....=z_].......
0060 ....-...d... ...
0070 .............k..
0080 ....C.D....6.A..
0090 ..2.E......2....
00a0 H.....t.........
00b0 ........(b...’}.
00c0 .....ck.........
00d0 ......,....;....
00e0 ...C.......6...[
00f0 L?W.....X.......
0100 ..X...."........
0110 ..Mj.........)..
0120 ....2...........
0130 ..8...fJ.+...8..
0140 .......4........
0150 ......v.......+.
0160 ...(^...o...!F..that’s what winamp sends
0000 Z.p...LAME3.99.5
0010 UUUUUUUUUUUUUUUU
0020 UUUUUUUUUUUUUUUU
0030 UUUUUUUUUUUUUUUU
0040 UUUUUUUUUUUUUUUU
0050 UUUUUUUUUUUUUUUU
0060 UUUUUUUUUUUUUUUU
0070 UUUUUUUUUUUUUUUU
0080 UUUUUUUUUUUUUUUU
0090 UUUUUUUUUUUUUUUU
00a0 UUUUUUUUUUUUUUUU
00b0 UUUUUUUUUUUUUUUU
00c0 UUUUUUUUUUUUUUUU
00d0 UUUUUUUUUUUUUUUU
00e0 UUUUUUUUUUUUUUU.
00f0 .r.t....i.......
0100 .......... ..4.
0110 ...UUUUUUUUUUUUU
0120 UUUUUUUUUUUUUUUU
0130 UUUUUUUUUUUUUUUL
0140 AME3.99.5UUUUUUUdoes someone know how to do ?
thank you -
avformat/framecrcenc: Don't read after the end of side-data
6 December 2020, by Andreas Rheinhardtavformat/framecrcenc: Don't read after the end of side-data
Nothing guarantees that the size of side data containing a palette
is actually divisible by four (although it should be); but for
big-endian systems, an algorithm is used that presupposed this.
So switch to an algorithm that does not overread: It processes
four bytes at a time, but only if all of them are contained in
the side data.Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
merging sensor data and a video with ffmpeg on android
21 June 2020, by hannesI have a recorded video file and a simultaneously recorded csv-file with sensor data in external storage on android. Now I need to overlay the sensor data to the video and save it again.


At the moment I try to do it with ffmpeg. My approach is to write one value of the sensor data to a textfile which can be used as input for the
drawtext
command. After the frame is generated the textfile file should be updated with the next sensor value and so on. In combination withreload=1
I think this should work. My Problem is that I don't know when a frame was created by ffmpeg to update the textfile? Do I need to pause the ffmpeg command until the textfile has been updated?

Or does someone have another (better) idea?