Recherche avancée

Médias (91)

Autres articles (55)

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

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

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

  • Convert *.hdr sequences to HDR10 videos ffmpeg

    3 mars 2021, par kmd999

    I have some *.hdr sequences, and I would like to convert them to HDR10 videos.
I have tried using FFmpeg but FFMPEG errors that it can't find videos.

    


    ffmpeg -r 60 -i %d.hdr -pix_fmt yuv444p10le -c:v libx265   \
-x265-params hdr-opt=1:repeat-headers=1:colorprim=bt2020:transfer=smpte2084:colormatrix=bt2020nc:max-cll=0,0 \
-crf 25 -preset veryfast t.mp4


    


    This is what I tried. I think this is generally the code to convert to HDR10 videos. I didn't put master-display there because I don't have information. I wonder if master-display is needed.

    


    I also wonder since this *hdr sequence is likely sRGB, what happens if I specify it to be bt2020 ?

    


  • -to value smaller than -ss error while clipping videos with ffmpeg

    16 mai 2018, par dusa

    I am trying to clip videos using frame information, I first convert the frame to time since ffmpeg uses this notion to clip videos.

    The problem is for shorter videos, it gives the error :

    -to; value smaller than -ss; aborting.

    But in reality, this is false. For example, I get an error even with these values :

    0:0:47.4 -to 0:0:47.21  (format -> hh:mm:ss.frame)

    Can anyone tell me how I can fix this ?

    The video frame rate is 25 fps and the command structure I use is :

    os.system('ffmpeg -i ' + inputvideo + '.mp4' + ' -qscale:v 2 -vf scale=427:240 ' + ' -ss '+ str(fhours) + ':' + str(fminutes) + ':' + str(fseconds) + '.' + str(fframes) + ' -to ' + str(lhours) + ':' + str(lminutes) + ':' + str(lseconds) + '.' + str(lframes) + ' ' + outputvideo + '.avi')
  • How to merge two videos if one of them has filters with FFmpeg ? [duplicate]

    19 mars 2021, par Karp

    I have three MTS videos. One is just a plain MTS, however I added a fade-in and fade-out filters using FFmpeg to the second and the third one. Now I want to merge them and get one big MTS video. When I run the command I get the video, but it is broken (the part of the video, where no fade-in or fade-out was applied can’t be played (it is the first video of my 3 videos)). How can I fix this problem ?

    


    PS. I try to merge three videos without re-encoding (using -c copy)