Recherche avancée

Médias (91)

Autres articles (13)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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, par

    MediaSPIP 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, par

    The 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 user3773632

    I’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.2

    Thanks.

  • Using ffmpeg, the function av_find_input_format("avfoundation") return null

    28 avril 2019, par guojing

    I 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, and iformat = 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 Williamson

    I 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