
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (92)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ) (...)
Sur d’autres sites (10776)
-
transcoding part anexB bitstream
30 octobre 2023, par bot.top.popI'm using gohlslib for converting RTMP to HLS, this library gives me HLS and LHS with the transmuxing feature where each segment is of 2s.


But I also want to support the ABR, the flow with this is NALUs are packed in either AVCC or AnexB format and stored in fmp4 parts. []parts make one segment.


I was thinking if I could be able to transcode this anexB or AVCC stream format after its packed into fmp4.
I tried to check what's packed in parts and stored the output as .h264 file.


The first part of a segment has NALUs in this order
SPS
PPS
SPS
PPS
slice of IDR
slice of non-IDR...

but the later parts that are created don't have it.

Only the 1st part of every segment has
SPS
PPS
SPS
PPS
slice of IDR
.

I may be wrong to say that this is what raw .h264 content.


My question is, is it even possible to transcode such part files using
Go
orCXX
while maintaining same PTS and DTS of the transmuxed parts/segment

-
FFMPEG slow / fast motion part a video anywhere
27 juin 2017, par Muhammad UmarI am trying to cut a part of Video
Here is the code i have tried
Let’s say i have 6 seconds video and i want to slow down 2:5 seconds video that 3 second videoFirst approach after searching is, Cut the video, then apply slow filter then concat it with original video. But this is a mid part not entire video. How can i modify below code
ffmpeg -i Soon.mp4 -filter_complex
[0:v]trim=2:5,setpts=PTS-STARTPTS[v1] ;[v1]setpts=0.5PTS[v1] ;[0:a]atempo=2[a]
concat=n=1:v=1:a=1 -map "[v]" -map "[a] -preset superfast -profile:v
baseline output.mp4 -
Is FFmpeg a part of recent APIs ?
15 octobre 2015, par Léon PelletierWhen using
MediaCodec
andMediaMuxer
, I’ve noticed some mentions offfmpeg
in the logs. Does it means that a part ofFFmpeg
has been integrated intoAndroid
Framework ? Can I call it ?