Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (67)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (3622)

  • javacv FFmpegFrameGrabber.start() blocked,not run next line

    23 août 2017, par L.U

    when i run grabber.start it blocked,not run next line.

    FFmpegFrameGrabber grabber = new  FFmpegFrameGrabber("rtsp://admin:123456@192.168.3.2:10554/tcp/av0_0");
    grabber.start();
    final AtomicBoolean interruptFlag = new AtomicBoolean(false);

    get console message :

    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.
    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.
    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.
    • [rtsp @ 00000000004ec600] CSeq 6 expected, 0
      received.

    how to resole it ?thanks

  • Extracting the index of frame selected by ffmpeg thumbnail filter

    21 janvier 2019, par ashwinbhy

    I use the following command for extracting the representative frame out of every 10 frames from the video.

    ffmpeg -i input.avi -r 10 -vf thumbnail=10 -vsync 0 ./Output/%06d.png

    If i get the 4th frame selected from 10-20th frames, i want to know the 2nd frame selected was 24th in the original one.

    Right now the output is continuous 1,2,3.. n.png

  • -ss in ffmpeg causes black frames

    26 avril 2016, par Demonedge

    I use ffmpeg to cut a video into clips. By this command :

    ffmpeg -ss 00:00:00 -i video.mp4 -to 00:01:00 -c copy cut.mp4

    Ffmpeg has to cut at key frames, thus when I concatenate each clip back to the entire video, there are some repeated frames at the beginning of each clip. Then I found this command :

    ffmpeg -i video.mp4 -ss 00:00:00 -to 00:01:00 -c copy cut.mp4

    By putting -i first solves the above problem, but it introduces some frozen frames when I concatenate my video clips back into the whole video. In fact, I saw it introduces some black frames at the beginning of each clip, so when I concatenate these clips back, there are frozen frames.

    So is there any way that I can cut my video into clips accurately without introducing black frames or frozen frames in ffmpeg ?