
Recherche avancée
Autres articles (73)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications 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, parCertains 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, parPré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 (13273)
-
installing ffmpeg on hosting that a person doesnt have full control of ?+
10 avril 2019, par electroner1998I am wanting to use ffmpeg on my site, but my hoster is infinityfree. It comes with Softalicious Apps Installer, but it doesn’t have ffmpregg. Can I install it somehow ? Can I get the binaries and copy them to a folder in the domain ? Can I install it on WAMP, then copy the binaries over ? (Install WAMP, install ffmpeg, then copy the binaries ?). I don’t use home hosting cause I only have 1 GB of free storage left, but with infinityfree, you get Unlimited.
-
How to convert AVI movie to proper Apple itunes compatible movie ? [on hold]
10 février 2019, par sd100I am converting an AVI movie to Itunes compatible movie the playback in itunes is garbled.
Hi so I’ve used the following command with ffmpeg to convert avi to itunes movie :
ffmpeg -i *.avi -c copy -map 0 output.mp4
However when I add to itunes library the movie is garbled. What’s the right command to convert to mp4 compatible with itunes ? Thanks !
-
ffmpeg AVFrame get full decoded data to char*
20 décembre 2018, par mmmaaakI get Frames in loop and decode it with ffmpeg getting AVFrame as e result of it.
So I must get neccessary pixel data of frame into char* and give as a callback function’s parameter. So how I can generete such char* array ? In internet I saw some examples such as :
for(y=0; ydata[0]+y*pFrame->linesize[0], 1, width*3, pFile);
}or something like this. Is it true ? And which size would be my char* ? As I see we write width*3 *height bytes ?