
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (8225)
-
FFMPEG creating mp3 with "Junk" at the end
13 juillet 2022, par JohnarasI have a web application which converts WebM files to mp3 using FFMPEG.js in the Client-Side. Once the mp3 conversion finishes, users are prompted to download their file.


Lately, I realized that a lot of mp3 files which I tried to converted have a different duration value than the original WebM file. The duration is usually longer. For instance, a WebM file with duration of 2:16 gets converted to an mp3 file with a duration of 2:29. Once the player reaches at 2:16 it just goes back to the start.


I have tried to open the file in Audacity but it keeps saying that this MP3 file seems to be "Malformed".


I also tried to use MP3val and it says the file has junk at the end.


Code Snippets :


const worker = new Worker("/ffmpeg-worker-mp4.js");
import { fetchFile } from "@ffmpeg/ffmpeg"; // https://www.npmjs.com/package/@ffmpeg/ffmpeg

const convertSong = async (title, id, bitrate) => {
 setProgress("Initializing...")
 ffmpegVars = [title]
 
 worker.postMessage({
 type: "run",
 arguments: ["-i", `input.webm`, "-c:a", "libmp3lame", "-vn", "-ab", `${bitrate ? bitrate : 256}k`, "-ar", "44100", "-f", "mp3", `output.mp3`],
 MEMFS: [{ name: "input.webm", data: await fetchFile(`/api/download/stream?video=${id}`) }]
 });
}

convertSong(data.title, data.id, data.bitrate)



I'm literally willing to pay anyone who helps me fix this.


-
How to "extend" aws docker base image (.net core from scratch) by ... libs/ubuntu/ffmpeg ?
26 avril 2022, par Nigrimmisti would like to use AWS Lambda through the image containers using .net core 3.1 and it is works fine for me in simplest code case. But i stucked with next scenario :


By default, aws provide base image with .net core with aws libs based on "from scratch". So as i know, it minimal Linux that does not contains even package manager.


I need to work with ffmpeg in the code, but to do it i need to install few packages and ... fmpeg. I have working code on image


FROM mcr.microsoft.com/dotnet/runtime:3.1-bionic



It is ubuntu with .net core runtime. But what is the right strategic in case of AWS Lambda image ? How can i ... merge them ?.


Have few ideas, but not sure :


- 

- use as is
FROM public.ecr.aws/lambda/dotnet:core3.1
and try to install package manager, all depenendencies to use ffmpeg and so on ? - Use
mcr.microsoft.com/dotnet/runtime:3.1-bionic
, somehow add required by amazon dependencies (how ? download content and attach from local ?) and configure it to run in Lambda runtime ? - ... ?








Will be glad to hear where is the solution here. Thanks !


- use as is
-
libavutil/hwcontext_qsv : Align width and heigh when download qsv frame
6 avril 2022, par Wenbin Chenlibavutil/hwcontext_qsv : Align width and heigh when download qsv frame
The width and height for qsv frame to download need to be
aligned with 16. Add the alignment operation.
Now the following command works :
ffmpeg -hwaccel qsv -f rawvideo -s 1920x1080 -pix_fmt yuv420p -i \
input.yuv -vf "hwupload=extra_hw_frames=16,format=qsv,hwdownload, \
format=nv12" -f null -Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>