
Recherche avancée
Autres articles (74)
-
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 ;
-
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 -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (7915)
-
Too small ffmpeg rtsp decoding buffer
30 janvier 2013, par gregoiregentilI'm decoding rtsp on Android with ffmpeg, and I quickly see pixelization when the image updates quickly or with a high resolution :
After googling, I found that it might be correlated to the UDP buffer size. I have then recompiled the ffmpeg library with the following parameters inside ffmpeg/libavformat/udp.c
#define UDP_TX_BUF_SIZE 327680
#define UDP_MAX_PKT_SIZE 655360It seems to improve but it still starts to fail at some point. Any idea which buffer I should increase and how ?
-
How to trim single ts file and concat with everything after with ffmpeg
22 mai 2019, par user3321348I have a number of ts files (h264, AAC) and I want to quickly cut out a portion without re-encoding more than the first chunk and last chunk. Then I want to concat them back together and make an mp4.
So I have 1.ts - 100.ts and each chunk is roughly 10 seconds. I want to cut from 1:05 to 10:05 minutes. I have code that finds the first and last ts file needed (let’s say it’s 11.ts for 1:05 and 61.ts for 10:05)
I run this to trim the first ts file to only the portion I need :
ffmpeg -i 11.ts -ss 5.0 -c:v libx264 -c:a aac 11.new.ts
Roughly the same thing happens to 61.ts to create 61.new.ts.
Now I want to concat 11.new.ts, 12.ts, 13.ts, ..., 61.new.ts into an mp4 without having to re-encode every single chunk. Currently, the resulting video plays the remaining portion of the first chunk just fine. After that point the audio continues but there’s no more video. I’m sure that has something to do with start time offsets that’s in the metadata of each ts file, but I can’t figure out how to solve that. Is this even possible ? And is this the best way to quickly do something like this ?
-
avcodec/movtextenc : Remove redundant function parameters
16 octobre 2020, par Andreas Rheinhardtavcodec/movtextenc : Remove redundant function parameters
It makes no sense to call the functions to write styl, hlit or hclr boxes
with a different box name than "styl", "hlit" or "hclr". Therefore this
commit inlines these values in the functions, removes the function
parameter containing the box's name and removes the (non obsolete) box
names from the list of boxes.Reviewed-by : Philip Langdale <philipl@overt.org>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>