
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (47)
-
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (9718)
-
avfilter/vf_yadif : rename config_props -> config_output, link -> outlink
28 novembre 2019, par Limin Wang -
Converting m3u8 link to frame through FFMpeg
30 octobre 2019, par LionKingI am trying to convert the .m3u8 live streaming link into frames instantly. I can convert the link to the frames by overwriting. But as much as I understood, FFMpeg reads the m3u8 links package by package, so this creates a standstill on the frames, frames doesn’t flow unceasingly.
I have tried to overcome this issue by setting input and output framerates manually. The code I used is below.
URL=https://trtcanlitv-lh.akamaihd.net/i/TRT1HD_1@181842/index_720p_av-b.m3u8
ffmpeg -y -r 4 -i $URL -r 25 -update 1 image.jpgThis allowed me to overcome standstill problem a bit but not really, but is there any way you can suggest that the frames can be written to image.jpg instantly and without any discontinuation.
Thanks a lot.
-
How to link libavformat in Cmake on mac ?
29 novembre 2019, par Alexandru CancescuI am trying to use the libavformat from ffmpeg in a C++ project. I have ffmpeg installed using homebrew.
My CMakeLists.txt :
cmake_minimum_required(VERSION 3.14)
project(av_test)
set(CMAKE_CXX_STANDARD 11)
INCLUDE_DIRECTORIES(/usr/local/Cellar/ffmpeg/4.2.1_2/include)
LINK_DIRECTORIES(/usr/local/Cellar/ffmpeg/4.2.1_2/lib)
add_executable(av_test main.cpp)
TARGET_LINK_LIBRARIES(av_test libavformat)When running cmake I get this error :
ld: library not found for -llibavformat
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [av_test] Error 1
make[2]: *** [CMakeFiles/av_test.dir/all] Error 2
make[1]: *** [CMakeFiles/av_test.dir/rule] Error 2
make: *** [av_test] Error 2A quick
find libavformat*
into /usr/local/Cellar/ffmpeg/4.2.1_2/lib returns :libavformat.58.29.100.dylib
libavformat.58.dylib
libavformat.a
libavformat.dylibAlso in /usr/local/Cellar/ffmpeg/4.2.1_2/include/libavformat there is avformat.h
My main.cpp :
#include <libavformat></libavformat>avformat.h>
int main() {
AVFormatContext *pFormatContext;
return 0;
}I am running on mac os 10.14 with cmake version 3.15.5 , ffmpeg version 4.2.1