Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (88)

  • 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 ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (7217)

  • Fuse video with various audios ; adjust speed and offset [closed]

    16 octobre 2023, par 李志博

    I have a muted video and multiple audio files that need to be merged. Each audio file represents a different time segment of the video. While merging, I need to specify the position of each audio file in the video, as well as their playback speed and corresponding time segment in the video. The final output should be a complete video with merged audio. How can I achieve this ?

    


  • avfilter/vsrc_gradients : allow zero speed

    26 novembre 2023, par Paul B Mahol
    avfilter/vsrc_gradients : allow zero speed
    
    • [DH] libavfilter/vsrc_gradients.c
  • How to Speed Up Two-Pass Encoding ?

    27 juillet 2017, par Matt McManis

    I have a Video file with Audio, Subtitles, Chapters, and Metadata.

    I removed Audio and Subtitles with -an -sn from -pass 1 and then inlclude them in -pass 2.

    What about for Chapters and Metadata ? And how do you apply Turbo to -pass 1 ?

    Is there anything more that can be done ?


    I have a script that will convert mpg to mp4. I’ve sorted it with linebreaks so it’s easier to read.

    Pass 1

    "C:\Videos\example.mpg"

    -vcodec libx264
    -preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
    -vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
    -pass 1

    -map 0:v:0? -an -sn

    -threads 8

    "C:\Videos\example.mp4"

    Pass 2

    ffmpeg -y -i

    "C:\Videos\example.mpg"

    -vcodec libx264
    -preset medium -b:v 2500K -pix_fmt yuv420p -qcomp 0.8
    -vf scale="trunc(iw/2)*2:trunc(ih/2)*2"
    -pass 2

    -acodec aac
    -b:a 320k
    -af volume=1.2

    -map 0:v:0? -map 0:a:0? -map 0:s? -c:s copy -map_metadata 0

    -threads 8

    "C:\Videos\example.mp4"