
Recherche avancée
Autres articles (85)
-
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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (8629)
-
How to replace the video track in a video file with a still image ?
22 février 2021, par cornerstoreI am trying to use ffmpeg to replace the video track in a video file with a still image. I tried some commands I got from other questions such as the one here


ffmpeg -i x.png -i orig.mp4 final.mp4


ffmpeg -r 1/5 -i x.png -r 30 -i orig.mp4 final.mp4


But these didn't work. I'm not sure which of these arguments are required or not. The output should be accepted by YouTube as a valid video - I was able to simply remove the video track, but apparently they don't let you upload a video without a video track.


-
Complex, how to -o, -mv or similar into this code ? [closed]
13 décembre 2020, par Sounds GoodTrying to change location of output file
Using Windows>Ubuntu app>Shell/Cmd>Bash (because Windows alone code does not work at all)
Using Ffmpeg/Youtube-dl/Sed together
It works on its own :


ffmpeg $( youtube-dl -f bestvideo+bestaudio --youtube-skip-dash-manifest -g https://www.youtube.com/watch?v=zSyNOO_gvUY | sed "s/.*/-ss 04:09 -to 04:15 -i &/") -map 0:v -map 1:a -c:v libx264 -c:a aac name.mp4


Bash starts as :
:/mnt/c/Users/Machine$


Fallowing just few of many problems I tried to figure out for this :


should I use
/
or\
to "subfolder"

Start from
/
orC
orDesktop
etc.

does
-o
need to be configured and if so how

placements after
Youtube-dl
or in the ending by keepingname.mp4
or not, or changing it to
'-o %(title)s.%(ext)s'
(title change needed as well thought)

help.


-
How to code transcoding of TS to MP4 using ffmpeg
28 juillet 2016, par CodeLearnerffmpeg -i testFile.ts -c:a aac -strict -2 -c:v copy testOutputFile.m4a
The above command successfully converts
testFile.ts
(H264
video +Mpeg2
audio) totestOutputFile.m4a
(H264
video +AAC
audio).I need to implement the same functionality via code (using the
ffmpeg
library preferablyffmpeg v1.2
).Does anybody know how to copy from one container(
TS
) to another(MP4
) while encoding audio but not video ?