
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (36)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5690)
-
How to change resolution of a video.mp4 file stored on the AWS S3 ?
10 octobre 2018, par AmanI’m using
AWS S3
to store myvideo
andaudio
files. Before I upload any video file, I convert the video file into different resolutions from my laptop usingffmpeg
and then I upload those files onto myAWS S3
account. I want to know if its possible to convert the video file stored on myAWS S3
to different resolutions. As in the conversion to happen on theAWS
.I’m using
ffmpeg
command inCMD
:ffmpeg -i video.mp4 -s 256x144 -c:a copy video_144p.mp4
-
Unable to use FFMPEG for speed change for video file
23 décembre 2019, par Sachin HarneI am working with a video file where I need to change the speed of the video, slow-motion as well as fast-motion the video. I tried using the commands below but none of those are helping me out.
String cmd = "-i " + inputFilePath + " " + "-filter:v" + " " + "setpts=0.5*PTS" + " " + outputPath;
String cmd = String.format("-i " + filepath + " -filter:v "+ "\"setpts=2.0*PTS\"" + outputPath);
String cmd = "-i " + filepath + " -vf " + "\"setpts=(1/60)*PTS\" " + outputPath;
String cmd = String.format("ffmpeg -i " + filepath + " -filter:v " + "\"setpts=PTS/60\" " + outputPath);
Getting the error message as below :
Unrecognized option ’i /storage/emulated/0/Movies/video/video_20191223184836613013111.mp4 -vf "setpts=(1/60)*PTS" /storage/emulated/0/Movies/video/finalVideo_724.mp4’.
Error splitting the argument list : Option not found
-
Consume RTSP stream from users browser without converting on the server
19 août 2018, par KazanzI have thousands of IP cameras that need to be displayed to various users that are all outputing RTSP streams. Right now I have a server that uses ffpmeg to convert the stream to mpeg video that is then consumed and served over websockets via a node app.
My problem is that these two processes take up a ridiculous amount of memory. About a half a GB for each camera.
Is there any way to offload the conversion and reading of the stream to the client’s machine in their browser, or potentially out of it ?