
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (41)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...)
Sur d’autres sites (5597)
-
Revision a721e5cb0f : Merge "Build / make problem" into experimental
5 novembre 2012, par Yaowu XuMerge "Build / make problem" into experimental
-
avcodec/nvenc : add rate control option
25 mai 2016, par Andrey Turkin -
FFMPEG problem when transcoding one after another
10 juillet 2022, par Mike woodsIn server A, I have a loop to transcode video files one after another to MPEGTS format, And send them to server B. Server B receives the data and broadcast it to multiple clients. I'm using it to broadcast files like a TV channel. Something like this


//Files is an array of multiple video file names

for(file of files) {
 transcode(file);
 //Transcodes and sends the data to server B.
}

//The ffmpeg command that above function is using to transmit the data is
//ffmpeg -y -hide_banner -loglevel error -re -i file_1.mp4 -vcodec libx264 -acodec aac -c:s copy -map 0 -mpegts_flags pat_pmt_at_frames -f mpegts tcp://147.261.97.32



The problem is when I play the stream as a client, it always freezes when first program ends and next one starts. I log the transferred data and data is coming correctly. which means following loop is working and transferring files one after another. But why does it freeze in player ?