Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (50)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (12317)

  • Révision 19693 : r18982 n’avait corrigé le bug sur PARAMETRES_FORUM qu’incomplètement, en ne tena...

    11 juillet 2012, par esj@rezo.net

    Par ailleurs, afin que le raccourci pour les tables puisse produire du XHTML Basic, introduction d’une constante _RACCOURCI_THEAD qui ne produit les verbeux Thead et Tbody que si elle vaut True. Du coup, ce raccourci devient capable de produire des tables ayant plusieurs lignes de Th (...)

  • Add text on video in ffmpeg on portrait video

    23 février 2017, par Dhanveer thakur

    I am adding text on a portrait video in ffmpeg using following command :-

    -i /sdcard/Hyype/195_Video.mp4 -vf drawtext=fontsize=80:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text=Post:x=286.0:y=573.0-ascent -strict -2 /sdcard/Hyype/495_Edited_Video.mp

    This Command add text on video in landscape mode as shown in current output pic

    Following are screen shots :-
    1. Current output :-

    enter image description here

    1. Expected Output :-

    enter image description here

    Can someone help me that how can i add text on video in portrait form and achieve the expected output in second pic ?

  • Compressing videos from a smartphone

    21 septembre 2019, par fejesjoco

    I have a Nexus 6p with the stock camera. It’s set to record at 1080p, 30fps. Here’s a 5 second sample (11 MB).

    Videos from this phone come out at about 17 Mbps on average. I tried to compress it with ffmpeg with -c:v libx264 -crf 23 -preset veryslow, the result comes out at about 5.5 MB, which is about 9 Mbps.

    I think this bitrate is a bit too much. When I look at torrent file listings, I can see high quality videos at 3 GB in size on average, and if such a movie is 90 minutes long on average, that is about 4-5 Mbps which sounds okay.

    I’m wondering, why the big difference ? I can notice that my video is noisy/grainy (which is expected from a phone), and that might reduce compressibility. I tried a few ffmpeg filters, like hqdn3d and atadenoise, but the noise mostly remained (maybe I didn’t play with it enough). Then I figured, the video is also shaky (which is also expected), and that might reduce compressibility too (and even makes temporal noise filtering less effective). I tried to stabilize it with the deshake filter, but that didn’t help either.

    I know I could just limit the bandwidth to whatever I like, but there must be a reason why ffmpeg thinks it needs a high bandwidth to maintain a certain quality, and a lower bandwidth would just decrease the quality.

    Why do these videos have such a high bitrate ? What’s the best way to compress them more while keeping or even increasing their quality ?