Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (69)

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

  • ffmpeg split video's audio/video sync problem

    30 janvier 2019, par Jabs

    My problem is that when i have split one video with equal length by -ss and -t ffmpeg command then in all chunk’s audio are drifts(means only audio play well but video display after 2 or 3 seconds - means video is paused or async). I want to resolve splitted videos audio/video sync problem.

    Can anybody help me to resolve this kind of issue ?

  • Video is not clear after using FFMPEG4ANDROID compress video

    22 juillet 2016, par J.Miller

    I am building an app where i need to compress video before uploading it to server. the video without compressing is about Five minutes,60M,Android video bit 2x1024x1024,640*480. Now I am using FFMPEG library to compress video http://androidwarzone.blogspot.co.il/2011/12/ffmpeg4android.html .The following is command commandStr = "ffmpeg -y -i " + url + " -strict experimental -vf crop=480:480:0:0 -s 480x480 -r 30 -aspect 1:1 -ab 44100 -ac 1 -ar 22050 -vcodec mpeg4 -b 300k " + demoVideoFolder + "out.mp4" ;. successful but not clear at all. here is my question : is there only way to compress video by reducing bitrate ? I hope to get video after compressing is as same as the original video. is anyone give me some advice ? thanks !

  • FFmpeg keep same video dimension if video height is less than x480

    6 juillet 2017, par Niks

    The following code im using for video converting :

    ffmpeg -i input.mkv -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k -movflags +faststart -s hd480 output.mp4

    I want to keep same video dimension for smaller videos. For example keep 640x360 dimension if video height is less than x480.

    Is ffmpeg such option ?