
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (13)
-
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 -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (3658)
-
Ndk : Button event error Fatal 11 SIGSEGV when video streaming
24 avril 2015, par user3773632I’m using ffmpeg in ndk, make video streaming service.
my problem is that Video streaming when the button is pressed, an fatal 11 SIGSEGV error occurs.
this my source
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fragment_main);
Log.v("LOG", "CREATE");
mUHSurfaceView = (UHSurfaceView) findViewById(R.id.uhsurfaceview);
bCamera = (Button)findViewById(R.id.camera);
bCamera.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Log.v("CameraButton", "CameraButton");
}
});In ndk using ffmpeg h264 decoding and rgb24 through opengl(GLSurfaceView) screen output.
I don’t know why occur this error i can’t solve error
please help me !my device : Samsung galaxy s4 mini
android : 4.2.2Thanks.
-
Using ffmpeg, the function av_find_input_format("avfoundation") return null
28 avril 2019, par guojingI run this code in iPad mini 4 (Model A1538), iOS 11.2.6
Try to record audio by FFmpeg.
av_register_all();
avcodec_register_all();
avdevice_register_all();
AVFormatContext *pFormatCtx = avformat_alloc_context();
AVDictionary* options = NULL;
av_dict_set(&options,"list_devices","true",0);
AVInputFormat *iformat = av_find_input_format("avfoundation");
printf("==AVFoundation Device Info===\n");
avformat_open_input(&pFormatCtx,"",iformat,&options);
printf("=============================\n");
if(avformat_open_input(&pFormatCtx,"0",iformat,NULL)!=0){
printf("Couldn't open input stream.\n");
return;
}pFormatCtx
=NULL
, andiformat
=NULL
.Why should this happen, did I missed anything to set ?
-
ffmpeg on the fly switch video from rtsp stream
31 juillet 2021, par John WilliamsonI have a nest doorbell which provides a video stream via rtsp but for security the url is valid for just 4 minutes at which point a new url is provided i.e.


15:25 - rtsps://stream-eu1-delta.dropcam.com:443/sdm_live_stream/CiQA2.....
15:29 - rtsps://stream-eu1-delta.dropcam.com:443/sdm_live_stream/vY8pB.....



I'm able to play the individual streams to a rtsp-simple-server using


ffmpeg -nostdin -i rtsps://stream-eu1-delta.dropcam.com:443/sdm_live_stream/CiQA2.... -q:v 1 -f rtsp rtsp://localhost:8554/live



But is there any way to switch to the latest url on the fly ? I've looked at ffmpeg concate but this requires files. I don't really care about freezing or black between the switching, only that the output stream should remain open.


ffmpeg version 4.2.4-1ubuntu0.1 running on Ubuntu 20.04.2 LTS