
Advanced search
Medias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Paul Westerberg - Looking Up in Heaven
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Le Tigre - Fake French
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Thievery Corporation - DC 3000
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Dan the Automator - Relaxation Spa Treatment
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Gilberto Gil - Oslodum
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
Other articles (105)
-
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 April 2011, byLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Gestion de la ferme
2 March 2010, byLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
On other websites (12572)
-
converting png to movies with R via ffmpeg
10 May 2021, by user237554I want to convert a series of *.png files to a movie with R and have installed ffmpeg in the root directory. I think the installation has been successful because if I type


ffmpeg -version



in terminal I get all of the version information etc., etc.


I have my *.png files saved in the wd and in R I say


imgs <- list.files(pattern="*.png")
 saveVideo({
 for(img in imgs){
 im <- magick::image_read(img)
 plot(as.raster(im))
 }
 })



I get an error message that "the command ""ffmpeg"" is not available in your system. Please install FFmpeg". Is there something I need to do to get R and ffmpeg to talk to each other? Again, from terminal, ffmpeg is in the directory and it looks like it installed.


thanks


-
Is "begin" param dead in Youtube's *.c.youtube.com/videoplayback?
23 January 2013, by MinimeI tested Youtube video download with begin param using ytdl, and realized that it's not working properly. Below is an URL with begin param. (It won't work on your side because it's session-IP address based.)
I traced Youtube site by myself to see if there are any recent changes on their black boxed
API. And I found that begin param is no longer put in videoplayback, but put in user_watch as below.Its response is
<?xml version="1.0" encoding="utf-8"?>
And videoplayback only has range param, which indicate byte range where to pull. However, I couldn't figure out exact mechanism how new begin param works.
Can anyone explain how to pull a video starting from specific position(msec) in new API?
-
How to mix images and movies with ffmpeg
30 July 2014, by CatalinI have a bunch if h264 encoded mp4 files (of about 10-15 seconds) and I want to mix them with another bunch of jpegs (which should be displayed for x seconds each).
So I’ve setup the concat.txt file :file slide_1.jpg
duration 3
file movie_1.mp4
file slide_2.jpg
duration 5
file movie_2.mp4and I am trying to run
yes | scripts/ffmpeg -f concat -i concat.txt -vcodec copy -c:a copy final.mp4
which generates a movie with the length of 6 hours (6:48:34) and in which I can only see the 1st picture.
How do I fix this ?