
Recherche avancée
Autres articles (40)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (9023)
-
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 ?