
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (21)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (4634)
-
Add a sample "CAMM" data to specific PTS in a MP4 file
11 janvier 2023, par ChelouteFor testing purpose, I need to add programatically some samples to an existing MP4 video file but I can't understand how.
My goal is to add some CAMM1 records (exposure data) associated to each PTS multiple of 33366, that's to say : PTS=0, PTS=33366, PTS=66732, ...


I already have an existing camm track atom in my file, so the idea is to duplicate all the existing CAMM samples (CAMM2 and CAMM3 data), add my CAMM1 samples to the existing CAMM data, and write all the samples again at the end of the mdat atom (moov atom is located after mdat atom in my case). Next I'll update the CAMM track atom (stts, stsc, stsz and stco) to index all the samples correctly.


But I have 1 question I can't understand. STSC and STCO are dealing with offsets and STTS with time and delta, how can I do to link my CAMM1 records to PTS multiple of 33366 ?


Thanks


-
avcodec/h264pred : Remove dead > 8 pixels checks for 8bit codecs
10 janvier 2022, par Andreas Rheinhardtavcodec/h264pred : Remove dead > 8 pixels checks for 8bit codecs
RV40, SVQ3 and VP7/VP8 are eight-bit only, so it makes no sense
to check for them in the codepath initializing > eight bit contexts.
Move the codec-specific code to a switch located after the eight-bit
init code where this is easily possible ; and add checks to the macro
to enable the compiler to remove the remaining checks when initializing
bitdepths > 8 at compile-time.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Seek a .mp4 video using FFmpeg and out put as .mov in iOS
14 juillet 2015, par AnujAroshAIn my iOS project, I am using .mp4 video file which located inside my project to seek to a particular location and convert the output as .mov file. I want to achieve this using FFmpeg without any wrapper.
I was able to build FFmpeg libraries for iOS using this script and then I added them to my project as well.
This is the fully code that I have used to achieve my seek and convert target.
The issues with final output of the file are :
- Video Duration and Dimensions properties are empty even it plays for 2 minutes and 7 seconds (Actual video has 5 minutes and 47 seconds)
- Video is fast-forwarding for 6 seconds and halt there till the clip ends
- In the code I gave seek time to 100 seconds but both audio and video streams starts from the beginning just like the actual video file