
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (30)
-
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 (9524)
-
Basic Video Player Using Qt And FFmpeg
7 mars 2016, par Thibaud AuzouI am trying to program a little and basic video player using Qt and
FFmpeg
. I first recompiled Qt to use with Visual Studio 2015.Once done I created my
MainWindow
, theMenuBar
, thePushButtons
that I needed, etc.Now that I wrote the main structure of this little project I am struggling with integrating
FFmpeg
into it. I believe I am trying to uselibavcodec
to read a video. But to be honest I am not sure.I am quite lost at this point, several hours on Google and still lost.
While the documentation of Qt was quite easy to handle, the documentation of
FFmpeg
is kinda vague...An of you has an advise regarding
FFmpeg
? A good tutorial ? -
FFmpeg/GStreamer - Extract alpha channel from HEVC (H.265) elementary stream
10 mars 2021, par Jonathan EllisI have produced an HEVC (H.265) elementary stream which contains alpha (produced from Apple VideoToolbox framework), from which I would like to extract the alpha channel for further processing.


I'd like to process the alpha in either one of these two ways :-


(a) A series of grayscale PNG/JPEG images, with the alpha channel of each frame


or


(b) A series of PNGs with alpha with the RGB and Alpha composited in a single, semi-transparent image


How can I achieve either of these with FFmpeg/GStreamer ?


-
How do I reverse a video in ffmpeg ?
19 avril 2023, par Will Beeson- Full Error :


Stream specifier 's1:v' in filtergraph description [0]split=2:outputs=2[s0][s1] ;[s1:v]reverse[s2] ;[s0][s2]concat=a=0:n=2:v=1[s3] matches no streams.


- Formatted Error


- 

- [0]split=2:outputs=2[s0][s1] ;
- [s1:v]reverse[s2] ;
- [s0][s2]concat=a=0:n=2:v=1[s3]








- Code :


instances = (
 ffmpeg
 .input(self.video_file)
 .filter_multi_output(filter_name="split", outputs=2)
)
ordered_edits = []
for i in range(2):
 if i%2 == 0:
 ordered_edits.append(
 instances[i]
 )
 else:
 ordered_edits.append(
 instances[i].video.filter(filter_name="reverse")
 )
(
 ffmpeg
 .concat(*ordered_edits, a=0, v=1)
 .output('done/output.mp4')
 .run(overwrite_output=True))



Looking at the error code, it seems like s1:v should be a valid reference. The only thing I can think of is that there is an issue saving an exclusive video input into a nonspecified output. The files don't actually have any audio, I just want the video.


I'm lost, please help ffmpeg experts of the world !