
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 (31)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (5660)
-
How can i make the video has no index positions and no total lenght just like raw bitstream format, but it can have audio stream go along ?
5 novembre 2018, par Adam EstelHow can i make the video has no index positions and no total lenght,it cannot speed up slow down on a video player and it can have audio stream go along, with ffmpeg code ?
I’ve research for a while but i only stuck at the way to exact raw bitstream (annex B) video
Thank you for your guidance. -
Obtain the total number of samples with FFMpeg
10 octobre 2018, par Henricus V.Currently my application reads audio files based on a while-realloc loop :
// Pseudocode
float data* = nullptr;
int size = 0;
AVFrame* frame;
while(readFrame(formatContext, frame))
{
data = realloc(data, size + frame.nSamples);
size += frame.nSamples;
/* Read frame samples into data */
}Is there a way to obtain the total number of samples in a stream at the beginning ? I want to be able to create the array with
new[]
instead ofmalloc
. -
How to render a 7 minutes video duration but only play 4 minutes and then stop but total length of video is still remain 7 minutes with ffmpeg ?
7 août 2018, par Adam EstelHow to render a 7 minutes video duration but only play 4 minutes and then stop but total length of video is still remain 7 minutes when i uploaded it to youtube, just like this image :
enter image description hereI try
nullsrc
fillter but it didn’t success,it’s still play entire 7 minutes to end video not 4 minutes
I had researched google but i didn’t have a clue, then is there a way to do it ?