
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (104)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (9737)
-
Trying to compile ffmpeg and mpv in Arch Linux : error "undefined reference to pl_log_create_341" [closed]
4 février 2024, par Mike NguyenEver since yesterday, I have been struggling to compile ffmpeg, and to a further extent, mpv, on Arch Linux due to the following error that is probably unique to my install :


/usr/bin/ld: libavfilter/libavfilter.so: undefined reference to pl_log_create_341
collect2: error: ld returned 1 exit status
make: *** [Makefile:133: ffplay_g] Error 1
make: *** Waiting for unfinished jobs....
/usr/bin/ld: libavfilter/libavfilter.so: undefined reference to `pl_log_create_341'
collect2: error: ld returned 1 exit status
make: *** [Makefile:133: ffprobe_g] Error 1
/usr/bin/ld: libavfilter/libavfilter.so: undefined reference to `pl_log_create_341'
collect2: error: ld returned 1 exit status
make: *** [Makefile:133: ffmpeg_g] Error 1



I was trying to install mpd on my system, but pacman forced me to remove a ton of essential packages relating to multimedia, Qt, etc. I have since been able to reinstall most of these packages.


However, my ffmpeg has been corrupted (as well as mpv failing to start) due to another error that apparently no one else has been getting (I have searched Google for this) :


symbol lookup error: /usr/lib/libavfilter.so.9: undefined symbol: pl_tone_map_auto



I have both libavfilter.so.9.12.100 and libavfilter.so.9.13.100 in my /usr/lib directory, and I am forced to run
sudo ln -s /usr/lib/libavfilter.so.9.12.100 /usr/lib/libavfilter.so.9
every time I run pacman.

I have spent countless hours browsing the web about what solutions are available, but as I said, I seem to be the only one getting these errors.


Whether it's installing ffmpeg-git via the AUR, or removing and reinstalling mpv, nothing seems to fix the problem. And no one else is having this problem.


I might be forced to do a clean install of Arch Linux, but I don't have the time for it.


-
undefined reference to pl_log_create_341 whenever I try to compile ffmpeg and mpv under Arch Linux [closed]
3 février 2024, par Mike NguyenEver since yesterday, I have been struggling to compile ffmpeg, and to a further extent, mpv, on Arch Linux due to the following error that is probably unique to my install :


/usr/bin/ld: libavfilter/libavfilter.so: undefined reference to pl_log_create_341 collect2: error: ld returned 1 exit status make: *** [Makefile:133: ffplay_g] Error 1 make: *** Waiting for unfinished jobs.... /usr/bin/ld: libavfilter/libavfilter.so: undefined reference to
pl_log_create_341'
collect2 : error : ld returned 1 exit status
make : *** [Makefile:133 : ffprobe_g] Error 1
/usr/bin/ld : libavfilter/libavfilter.so : undefined reference topl_log_create_341' collect2: error: ld returned 1 exit status make: *** [Makefile:133: ffmpeg_g] Error 1


I was trying to install mpd on my system, but pacman forced me to remove a ton of essential packages relating to multimedia, Qt, etc. I have since been able to reinstall most of these packages.


However, my ffmpeg has been corrupted (as well as mpv failing to start) due to another error that apparently no one else has been getting (I have searched Google for this) :


symbol lookup error: /usr/lib/libavfilter.so.9: undefined symbol: pl_tone_map_auto


I have both libavfilter.so.9.12.100 and libavfilter.so.9.13.100 in my /usr/lib directory, and I am forced to run
sudo ln -s /usr/lib/libavfilter.so.9.12.100 /usr/lib/libavfilter.so.9
every time I run pacman.

I have spent countless hours browsing the web about what solutions are available, but as I said, I seem to be the only one getting these errors.


Whether it's installing ffmpeg-git via the AUR, or removing and reinstalling mpv, nothing seems to fix the problem. And no one else is having this problem.


I might be forced to do a clean install of Arch Linux, but I don't have the time for it.


-
How to record browser animation to video, on Server/VPS
11 novembre 2015, par Andy BI have one big question : How to record an animation that plays in the browser on a server/VPS ? We’re looking for a open/source or even proprietary solution.
The use-case :
We have an online project that generates animations and we want to record them on the server side.
Practically it’s as simple as that, as opening a url(eg : https://greensock.com/gsap) in the browser and record the animation.On the local PC it works if we use ffmpeg, but we want to record the video on the server side, especially on a VPS without GUI.
There are some solutions :
- Install a Lightweight GUI on the VPS, accesible through VNC
Something like this :
https://vpsboard.com/topic/2786-running-a-lightweight-gui-on-your-vps/Then create a cron job that will do the following :
- open the browser with the correct url and play the animation
- use ffmpeg to record the animation
- save the video somewhere
This solution allows a SINGLE execution thread at the same time and I don’t really like the setup.
- Use a fake X server
Create/use a fake X server, tell the browser to run in there, tell ffmpeg to record that screen !?
The question is : HOW ?
- Virtual Machines within the VPS
The question is : HOW ?
I would like to have the possibility to execute this job in a sort of container (be it docker or virtual machines within the VPS), having also the possibility to execute multiple jobs in parallel.
Thank you all in advance !