
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (75)
-
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 (8351)
-
Append A Frame (PNG) FFMPEG To existing video, Make changes all the video - libx264
7 décembre 2022, par agh bagherianI want to append a frame to existing video by using ffmpeg.


p0.png, p1.png and p2.png (3 frames)


by this command ffmpeg generate first video :


ffmpeg -framerate 4 -f image2 -s 1280x720 -i p%d.png -vcodec libx264 -b 80k test1.mp4


Then i want to append a frame to last of video, but total video in HEX-View will be changed. I use this command to append :


ffmpeg -framerate 4 -f image2 -s 1280x720 -t 1 -i new_pic.png -i test1.mp4 -vcodec libx264 -b 80k test2.mp4


Please see image below :




But i want only append some hex code to end of first video....


Please help me. Thanks


I tried many commands. I did not get any results


-
Adding transparency to a video from black and white (and gray) alpha information video images
3 juillet 2018, par Jan F.I’d like to create a video with transparency (and semi transparency) in android. The images of the source video are split into two images, the top one with color information (looks like the normal video image), the bottom one with alpha information (the same shapes but only in black and white and gray, black means transparent).
This is the solution for iOS :
https://medium.com/@quentinfasquel/ios-transparent-video-with-coreimage-52cfb2544d54What would be the best way to to this in android ?
Can this be solved with javacv, FFmpegFrameGrabber, FFmpegFrameFilter etc.?
Or better with OpenGL ES and shaders ?
Are there any samples ?
Thanks !
-
SVT-AV1 : After encoding the video seeking is very bad in any video player (even HTML5)
18 juin 2020, par Viktor Machniki am using SVT-AV1 and FFMPEG to encode Videos into the AV1 video and opus audio codec (.webm), it works fine, except that the video seeking do not work really (extremly bad). When i seek, the CPU useage jumps up and it takes up to minutes until the seeking process finishes.



Here is how i encode the videos :



- 

- Convert any video into yuv :
ffmpeg -i -preset veryslow -level 6.2 .yuv
- First AV1 run
svt-av1 -i '.yuv' -w -h --fps --rc 0 -q 30 --preset 8 -b '.\output1.ivf' --output-stat-file '.\stat_file.stat' --keyint 1 --enable-restoration-filtering 1
- Second AV1 run
svt-av1 -i '.yuv' -w -h --fps --rc 0 -q 30 --preset 3 -b '.\output.ivf' --input-stat-file '.\stat_file.stat' --keyint 1 --enable-restoration-filtering 1
- Get source video audio in opus codec
ffmpeg -i -c:a libopus -vn -preset veryslow -level 6.2 output.ogg
- Get final .webm video
ffmpeg -i output.ivf -i output.ogg -c copy output.webm













I have allready tryed to play with the —keyin option, also just letting it away and use the encoder default, but the results are always the same. (
--keyin 1
seems to work better than without this option, but also very very bad)


What am i doing wrong ?



Extras : I am using Windows 10 with downloaded version of SVT-AV1 and FFMPEG (I just renamed the SVT-AV1 Encoder .exe file to be
svt-av1.exe
). Used CPU is Ryzen 9 3900X

- Convert any video into yuv :