Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (34)

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

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5140)

  • How to get the highest resolution, dividable by 2 that contains the video without black borders after rotation ?

    22 avril 2016, par Vitalis Hommel

    I rotate a video. Then my goal is to get the biggest resolution, dividable by 2 that contains the video without black borders.

    rotated and bigger

    to

    rotated, smaller and dividable by 2

    My approach.

    ffmpeg -ss 6 -i "t.MP4" -ss 0 -t 5 -vf "rotate='8*PI/180:ow=hypot(iw,ih):oh=ow', scale='1920:1920', crop='1920:1080:0:420'" -c:v libx264 -crf 28 -acodec copy "t2.MP4"

    But that does not meet the criteria. Which command do I need ?

  • Concatenate videos and add black frames between them with ffmpeg

    25 avril 2016, par user3406207

    I have three videos that I am concatenating with ffmpeg. I would like to add a few black frames in between them. Although I’ve found a few hints on the web it has not worked for me yet. I have tried to generate an ’empty’ video with just black frames with :

    ffmpeg -t 20 -s 1920x1080 -f rawvideo -pix_fmt rgb24 -r 25 -i c:\nul  E:\empty.avi

    and then concatenate with another one but doesn’t work. I have tried a few other things without success. Any help would be greatly appreciated

    EDIT : also tried to add black frames before and after video with the following code, but no success :

    ffmpeg -f lavfi -i color=c=black:s=1920x1080:r=25:d=100 -i middle_video.avi -filter_complex
    "[0:v]trim=start_frame=1:end_frame=21[blackstart];
    [0:v] trim=start_frame=1:end_frame=21 [blackend];
    [blackstart] [1:v] [blackend] concat=n=3:v=1:a=0[out]" -map "[out]" -c:v qtrle -c:a -copy output.avi

    EDIT2 :
    Output from ffprobe

    Metadata:
    encoder: Lavf57.3.100
    Duration: 00:00:10.05, start: 0.000000, bitrate: 43302 kb/s
    Stream #0:0: Video: mpeg4 (Simple Profile) (FMP4 / 0x34504D46), yuv420p, 192
    0x1080 [SAR 1:1 DAR 16:9], 43333 kb/s, 23.98 fps, 23.98 tbr, 23.98 tbn, 10k tbc
    Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, s16p, 128 k
    b/s

    EDIT 3
    Link to the report of the ffmpeg console output :
    FFMPEG session report

  • output video has black..whats wrong in this command ?

    24 décembre 2022, par vikram

    i want add text over video and i am using ffmpeg android lib but edited successfully but output video shows me black screen only

    


    String addtextcommand[] = {
  "-i",
  inputpath,
  "-strict",
  "-2",
  "-vf",
  "drawtext=text=\'onLine1\': fontcolor=white", "-map", "0:a",
  "-codec:v", "libx264", "-codec:a", "copy",
  output
};