
Recherche avancée
Autres articles (71)
-
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 (12066)
-
Fastest method to add .ass (ssa, aegisub) SubStationAlpha subs to mp4 ?
23 mai 2015, par user3762355So i have video file mp4, and without changing its quality i want to add ass hardsubs.
i am doin this with ffmpeg :
on windows :ffmpeg -i input.mp4 -c:v libx264 -preset:v medium -profile:v baseline -level 3.0 -movflags +faststart -vf ass=insubs.ass -bufsize 4000k -qp 27 result.mp4
But it takes long time, or quality is bad.
It have to be most compatible, so baseline, and good for web.How to do it faster ?
When i change preset to ultrafast quality is very very bad.I dont want to use mkvtoolnix and handbrake or avisynth.
And it has to be on Windows.
It has to be something, possible to do with one simple bat file, very fast, good quality,small size, just like original mp4 only with subs hardcoded.
Thanks. -
What is the difference between raw MediaCodec implementation with FFmpeg integrated MediaCodec ?
30 avril 2022, par MichaelI google around the sample code for MediaCodec and notice there are three kinds of implementation in the market :


- 

- Java version
- NDK version with raw MediaCodec API
- NDK version but FFmpeg takes care of everything








I guess Java version is different on the performance side and use less frequently, but 2 & 3 are very confusing.


If choose option 3, the work is easier and a noticeable change from SW decoding would be
avcodec_find_decoder_by_name("h264_mediacodec")
, and the implementation can easily share with iOS VideoToolBox.

My question is would it be any performance or device compatible drawbacks compared with raw MediaCodec API ? Why did someone choose to use raw MediaCodec API ?


Plus what if I use surface mode ?


-
How to live stream video securely ?
16 février 2018, par casper04I have an IP Camera which sends out a RTSP stream over UDP. On the same network I have an Intel Edison where I can send the stream to, to possibly convert the stream and make sure it’s sent securely. From the Edison I want to send the stream to a server, where the stream is stored and sent out to the client (a browser).
Now I know that the best option to stream video on different browsers is HTTP Live Streaming, which means I should convert the stream to a format which is compatible with HLS. And as I understand it, this can be done with FFMPEG (which, I believe, also works on Yocto Linux, which is what is running on the Edison).
What I don’t want however, is that the stream that I’m sending out can be easily watched by people who are not authorized. Therefore, I would like to either encrypt the stream (and decrypt it on the server), or send it over HTTPS. Is this possible, and if so, how ?