
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (57)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 (10291)
-
ffmpeg shared libraries setup on visual studio 2013
19 décembre 2017, par Hyun JungSetting up ffmpeg shared libraries that are downloaded from ffmpeg zenaroe (https://ffmpeg.zeranoe.com/builds/) for windows_64bit. The IDE is VS2013.
I downloaded dev and shared build for windows 64bit.
And followed steps like bellow but when building, linker error happens. The object file is created so compiling seems done. But there seems to be a problem finding referenced functions at the linking stage.
- Create win32 project and main.cpp
- Copy ffmpeg_dev’s include and lib folders to solution directory.
- Open project properties and add the include dir and the lib dir.
- Add lib names to linker input.
-
Build
main.cpp
extern "C"{
#include
}
int main(void){
av_register_all();
return 0;
}
The linker error is :
LNK2019 unresloved external symbol _av_register_all referenced in function _main.
-
Split video in specific number of frame with ffmpeg in c#
1er août 2017, par Loic BchI want to split a video into a specific number of image :
I’m using ffmpeg/EmguCV in C#.I capture a video from a webcam and i need to split the video into 59 images. i’m using -i command with ffmpeg to split my video into a number of images.
The problem is that the number of images i get at the end is different at each capture because the duration of the video is not exactly the same due to fps drop.
So if anyone know if it’s possible to specify that i want the video to be equally cut into 59 images. (Or any other idea to get what i want)
(at the moment i’m taking the number of images i get from the cut and divide it by 59 then i’m taking one image in "the result" but i’ts not precise at all because if i get a decimal number im losing or adding images)
-
Split video in specific number of frame with ffmpeg in c#
30 avril 2017, par Loic BchI want to split a video into a specific number of image :
I’m using ffmpeg/EmguCV in C#.I capture a video from a webcam and i need to split the video into 59 images. i’m using -i command with ffmpeg to split my video into a number of images.
The problem is that the number of images i get at the end is different at each capture because the duration of the video is not exactly the same due to fps drop.
So if anyone know if it’s possible to specify that i want the video to be equally cut into 59 images. (Or any other idea to get what i want)
(at the moment i’m taking the number of images i get from the cut and divide it by 59 then i’m taking one image in "the result" but i’ts not precise at all because if i get a decimal number im losing or adding images)