Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (82)

  • 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 (8464)

  • After video codec copy to mp4 format with ffmpeg,new video has no screen and has just audio

    11 septembre 2016, par parsa

    I have an issue.sometimes when I convert video to mp4 with codec copy,my created video in chrome just has audio and it’s display a black screen, and in another browsers like firefox and internet explorer video doesn’t play.
    but I check this created video on my server and video displays.
    And here is my code in below

    ffmpeg -i -f mp4 -s 123.mov -codec copy 123.mp4

    The Output Of ffprobe 123.mp4 is :

    Metadata:major_brand:isom
    minor_version :512
    compatible_brands:isomiso2mp41
    encoder:Lavf57.31.100
    Duration: 00:26:58.97, start: 0.000000, bitrate: 1334 kb/s
    Stream #0:0(und): Video: mpeg4 (Advanced Simple Profile) (mp4v / 0x7634706D)
    ,yuv420p, 640x480 [SAR 1:1 DAR 4:3],1200 kb/s, 29.97 fps,29.97 tbr, 30k tbn,29.97 tbc (default)
    Metadata:handler_name: VideoHandler
    Stream #0:1(und): Audio: mp3 (mp4a / 0x6134706D), 44100 Hz, stereo, s16p, 12
    7 kb/s (default)
    Metadata:handler_name: SoundHandler
  • Concat 2 video and add watermark first video ffmpeg

    31 août 2020, par cleanguy

    I have a Video #1, it has audio. Also I have a Video #2, with audio too. I would like to concat the #1 and #2 (or play #1 first, and then #2) and then add a watermark in #1 for the rest of the video, preserving audio timestamps.

    


    I used this command but the watermark appears on the #2 video ?

    


        ffmpeg -i Video1.mp4 -i Video2.mp4 -i watermark.png
   -filter_complex
       "[1][2]overlay=5:5[v2];
        [0][0:a][v2][1:a]concat=n=2:v=1:a=1"
   -c:v libx264 -crf 21 -c:a aac -b:a 384k -ar 48000 -movflags +faststart Out.mp4


    


  • Create Seamless Video and Crop Video in one command

    27 avril 2019, par Zeeshan Sheikh

    I have a ffmpeg command that convert a video for seamless loop. But now i want to crop Video as well in same command.
    is there any solution to do crop video 720x720 in same command

    —Seamless Commmand—

    ffmpeg -i video.mp4 -filter_complex [0:v]split[body][pre] ;[pre]trim=duration=1,format=yuva420p,fade=d=1:alpha=1,setpts=PTS+(28/TB)[jt] ;[body]trim=1,setpts=PTS-STARTPTS[main] ;[main][jt]overlay -c:v libx264 -strict experimental out.mp4