
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (110)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 ;
Sur d’autres sites (7540)
-
Integrating ffmpeg in xcode5, Cannot find gcc
22 juin 2014, par user2007547I have been trying to integrate ffmpeg in xcode5.
The step [here][1][1] : FFMPEG integration on iphone/ ipad project says that cc parameter needs to be gcc in iphoneOs.platform.
But I could not find it in my xcode5.
It is present in xcode 4.6.3 that I have.I tried the ./configure command with cc as gcc from xcode4.
Something like this :./configure --prefix=armv7 --disable-ffmpeg --disable-ffplay --disable-ffprobe --disable- ffserver --enable-avresample --enable-cross-compile -- sysroot="/Applications/Xcode5.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk" --target-os=darwin --cc="/Applications/Xcode4.6.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc" --extra-cflags="-arch armv7 -mfpu=neon -miphoneos-version-min=6.0" --extra-ldflags="-arch armv7 -isysroot /Applications/Xcode5.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk -miphoneos-version-min=6.0" --arch=arm --cpu=cortex-a9 --enable-pic
It works ok but then the make command after fails like this :
libavcodec/arm/mdct_vfp.S:113:unknown register alias 'TCOS_D0_HEAD'
libavcodec/arm/mdct_vfp.S:114:unknown register alias 'TCOS_D1_HEAD'
libavcodec/arm/mdct_vfp.S:115:unknown register alias 'TCOS_S0_TAIL'
make: *** [libavcodec/arm/mdct_vfp.o] Error 1What am I doing wrong here ?? Where can I find gcc for xcode5 ??
-
Can not play local rtsp URL using FFmpeg in iOS
12 juin 2015, par PriyankaI am using
FFmpeg
for streamrtsp
URL in iOS.
I am trying to stream a local url but my app is failed to open url
avformat_open_input
method always return -5I have played the same url
rtsp://172.16.1.226:5544/1
on VLC media player on my iPhone and macbook it works on both.After few research i have found there is some problem with
rtsp_transport
I was using
av_dict_set(&serverOpt, "rtsp_transport", "tcp", 0);
for the server configuration while opening url and the result is can not open feed.When I changed it to
av_dict_set(&serverOpt, "rtsp_transport", "udp", 1);
I am able to open url successfully but I continuously getting error rtsp 1 missing packet and so on.Can anybody help what should be the right configuration while opening a local
rtsp url
usingffmpeg
.
Should i need to updateav_dict_set(&serverOpt, "rtsp_transport", "udp", 1)
Thanks in advance
-
[iOS]Use ffmpeg to add watermark(overlay) for video with image : JPG is OK, bug PNG is not useful
2 avril 2017, par WellBeingMy test platform is iPhone.
Some one told me to install zlib and libpng,
and then rebuild ffmpeg with —enable-decoder=png —enable-encoder=png,
but it is no useful,
Use "ffmpeg -codecs" command, I find that the PNG decoder is exist.
There is no problem when use JPG file, but PNG file is no useful
I can’t see anything about watermark on the video
The last log is :
Generic error in an external library
If the problem is on building of ffmpeg, how can I fix it ?
Thank you very much !