Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (16690)

  • 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

  • Array.push returns a number, not an array.

    17 octobre 2013, par jonrohan
    Array.push returns a number, not an array.