
Recherche avancée
Autres articles (67)
-
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 (9330)
-
FFMPEG mux video and audio (from another video) - mapping issue
22 avril 2015, par MarkI would like to place the audio from a video to another video without an audio (in one command) :
ffmpeg.exe -i video1_noAudio.mov -i video2_wAudio.mov -vcodec copy -acodec copy video1_audioFromVideo2.mov
I guess "-map" is the correct way to do it but I got confused with it.
Can you suggest how to resolve it ?
-
How to extract certain frames from a .yuv video file and create a new video using FFmpeg, OpenCV and python ?
8 avril 2020, par Ann BaijuI have a .yuv video file and a list containing some frame numbers. I need to make a new video with the frame numbers in the list and another video with the frame numbers that are not on the list. How can I do this using FFmpeg and subprocess module in python ? I'm also using OpenCV in the program. I need the new videos in both .yuv and .avi formats.


-
Convert one image + one video's audio to video with ffmpeg
5 septembre 2019, par intrlocutrI’m trying to convert one video file (flv) and one image file (jpg) to one mp4 video, with the video’s audio sample rate increased, and the image overlayed on top of the audio.
Right now I’m using this command :
ffmpeg -i video.flv -loop 1 -i photo.jpg -y -filter:a "asetrate=55786.5" -vcodec png -filter:v "pad=ceil(iw/2)*2:ceil(ih/2)*2" -map 1:0 -map 0:1 -y -tune stillimage finalvideo.mp4
It produces an mp4 that plays just fine in VLC, but will not upload to YouTube, which is what I eventually want to do. I could convert the flv to an mp3 and then to an mp4, with two separate ffmpeg commands, however I’m running this in an environment where time and resources are limited, so I’d like to avoid that if at all possible.