Recherche avancée

Médias (91)

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7050)

  • Save the recording video chunk (Segment) into system

    10 mars 2014, par user3156324

    I am recording the video using (Logitech) webcam, and after that store this recorded mp4 format video into the device. But if recording is going on and in the middle I directly turn off the device then the video is not get recorded means it is not saved into device. Means I think it is corrupted I am not sure about that but I think.

    So I want to save the recording into the device with the video chunk when recording is going on. I don't want to save the recording into device after completion of recording. But I want to save the recording continuously when recording is going on.

    I am using ubuntu system.

    Please tell me how can I do this.

  • FFmpeg decode h.264 mp4 video and save it to desktop in any format

    22 août 2016, par esadcelik

    By following ffmpeg examples i realised they don’t provide an example that decodes h.264 and save it to desktop in any way. I can decode h.264 but i cannot save it to desktop. How can i do this ?

    I can get this point but now how can i save it as a video ?

    while (1) {
       if ((ret = av_read_frame(fmt_ctx, &packet)) < 0)
           break;
       if (packet.stream_index == video_stream_index) {
           got_frame = 0;
           ret = avcodec_decode_video2(dec_ctx, frame, &got_frame, &packet);
           if (ret < 0) {
               av_log(NULL, AV_LOG_ERROR, "Error decoding video\n");
               break;
           }
           if (got_frame) {
               frame->pts = av_frame_get_best_effort_timestamp(frame);
                  .
                  .
                  .
                  .
                  .
                  .        
                  .
                  }
                   av_frame_unref(frame);
               }
           }
           av_packet_unref(&packet);
       }
  • ffmpeg cache whole video stream and save

    19 juillet 2016, par Luiz

    I have a security DVR that can stream a video recording using the RTSP protocol. I can record the playback using ffmpeg and save it to a file, but for a 20 min video, I have to watch the video to save or wait the whole playback time.
    I’m using :

    ffmpeg -i "rtsp://mystream" -r 15 -acodec copy -vcodec copy myvideo.mp4

    to do this

    Is there any way to buffer the whole stream and just save it to a file using ffmpeg, without the need to watch or wait the whole 20 minutes playback ? I don’t need to reencode anything since the stream video format is good enough for me.

    Thanks in advance