Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (47)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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 (...)

  • 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 (...)

Sur d’autres sites (6816)

  • Get exact frame from a video in Android

    20 février 2021, par hermt2

    So I have an app where users can take videos, and I want to grab specific frames from the file. When I use the method MediaMetaDataRetriever.getFrameAtTime(), it can only extract one frame for every second, but I want to grab frames between the seconds as well. I also tried to implement Jcodec into my project to grab the right frames :

    



    FrameGrab.getFrame(new File(videoFileToRetreive.getVideoFile()), currentFrame);,

    



    However, no matter what number I put into currentFrame, the image is always returns the first frame of the video. Is there any way to perform something like this without the use of ffmpeg ? If anyone knows an answer it'd be greatly appreciated.

    


  • Get exact frame from a video in Android

    22 février 2017, par hermt2

    So I have an app where users can take videos, and I want to grab specific frames from the file. When I use the method MediaMetaDataRetriever.getFrameAtTime(), it can only extract one frame for every second, but I want to grab frames between the seconds as well. I also tried to implement Jcodec into my project to grab the right frames :

    FrameGrab.getFrame(new File(videoFileToRetreive.getVideoFile()), currentFrame);,

    However, no matter what number I put into currentFrame, the image is always returns the first frame of the video. Is there any way to perform something like this without the use of ffmpeg ? If anyone knows an answer it’d be greatly appreciated.

  • why doesn't avformat_find_stream_info return with mp3 files

    18 avril 2014, par user1379811

    I have built and am using the latest build of lame, x264 and ffmpeg in my c++ project.

    If I call avformat_find_stream_info with an mp3 file it doesn't return but if I use a .mp4 file instead avformat_find_stream_info returns fine.

    I have tried different mp3 files and all give the same problem. They all seem to start with id3 if that has any effect ?

    I can't read more than 1 frame of data from the mp3 file with avformat_find_stream_info commented out so I'm thinking it's important.

    Can anyone offer a reason for avformat_find_stream_info not returning ? There seemed to be a patch for an endless loop but it seems thats already in utils.c.

    I have also tried to read and decode the mp3 files directly using fread but then I get a mp3 missing header error.

    Thanks.