Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (85)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    MediaSPIP 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, par

    Pré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 cornerstore

    I 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 Good

    Trying 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 / or C or Desktop etc.

    


    does -o need to be configured and if so how

    


    placements after Youtube-dl or in the ending by keeping name.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 CodeLearner
    ffmpeg -i testFile.ts -c:a aac -strict -2 -c:v copy testOutputFile.m4a

    The above command successfully converts testFile.ts(H264 video + Mpeg2 audio) to testOutputFile.m4a(H264 video + AAC audio).

    I need to implement the same functionality via code (using the ffmpeg library preferably ffmpeg v1.2).

    Does anybody know how to copy from one container(TS) to another(MP4) while encoding audio but not video ?