
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (9931)
-
ffmpeg failed to pull local rtmp stream
3 septembre 2019, par edhuI’m relatively new to this workflow and this might be a simple problem to solve. However, I haven’t found answers that matched exactly with my question. I’ve set up my nginx server with rtmp module and for testing purposes I used the following command to publish my stream :
ffmpeg -re -i -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -f flv rtmp://localhost/show/stream
After that, I launched up my application which is supposed to read the stream from the nginx server and it failed at
avformat_open_input(&ctx, szFilePath, NULL, NULL);
The returned error code is -5 and it signifies I/O issue. The
szFilePath
I passed in isrtmp://localhost/show/stream
and I assume this will automatically work since it works when I tried to play some mp4 sample files online. I also triedrtmp://localhost:1935/show/stream
and vice versa. I could view the stream being played in VLC but I can’t open it in the code. I’m not really sure what happened here. I feel like this isn’t necessarily a complicated issue but I don’t know where to start looking for possibles causes. I’d appreciate the help. Thanks ! -
avformat_open_input failed at openning local rtmp stream
3 septembre 2019, par edhuI’m relatively new to this workflow and this might be a simple problem to solve. However, I haven’t found answers that matched exactly with my question. I’ve set up my nginx server with rtmp module and for testing purposes I used the following command to publish my stream :
ffmpeg -re -i -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -f flv rtmp://localhost/show/stream
After that, I launched up my application which is supposed to read the stream from the nginx server and it failed at
avformat_open_input(&ctx, szFilePath, NULL, NULL);
The returned error code is -5 and it signifies I/O issue. The
szFilePath
I passed in isrtmp://localhost/show/stream
and I assume this will automatically work since it works when I tried to play some mp4 sample files online. I also triedrtmp://localhost:1935/show/stream
and vice versa. I could view the stream being played in VLC but I can’t open it in the code. I’m not really sure what happened here. I feel like this isn’t necessarily a complicated issue but I don’t know where to start looking for possibles causes. I’d appreciate the help. Thanks ! -
fluent ffmpeg => how to trim and concate parts of video into one output file without writing many output files. Make a most efficient solution
30 avril 2024, par Shreyansh GuptaI'm currently working on a online video website and i need to make a quick preview of videos using random timestamps and duration of the video.


Suppose the video is of 15 min then i want to cut out some parts like ->


1. from 00:00:40 take out next 2s 
2. from 00:01:20 take out next 2s 
3. ... and so on until the new video becomes 15s



How can i do this with fluent-ffmpeg in the nodejs project


Can i get the most efficient way of doing this without writing many output files and then concating them separately and removing then later


Only concating the trimmed videos in one output file and save when it is done.


I also came through a solution that uses complex filters but i don't know how to use it


ffmpeg("video.mp4")
 .complexFilter([
 ....// some filters here

 ])
 .on('end', function () {
 console.log('files have been merged and saved.')
 })
 .on('error',function (err){
 console.log(err)
 }
 .saveToFile("output.mp4")```