Recherche avancée

Médias (91)

Autres articles (91)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

Sur d’autres sites (14018)

  • avconv : rename transcode_audio/video to decode_audio/video.

    18 mai 2012, par Anton Khirnov

    avconv : rename transcode_audio/video to decode_audio/video.

  • Copy PTS from original video stream to processed video stream using ffmpeg and opencv

    25 janvier 2019, par Krishna Prasad Yellapragada

    I have two video files in webm format. First is the original video, captured using Chrome’s MediaRecorder API. The second is a processed video generated by processing each frame of the original video using OpenCV. How do I override the PTS of frames in processed video with PTS from original video. The number of frames between the two is same.

    The processed video is generated from a sequence of images using ffmpeg.

    ffmpeg -i frames/frame_%d.png -pix_fmt yuv420p ffmpeg-cfr.mp4

    This results in a CFR of 25fps. I have tried using the steps from the link, Can I create a VFR video from timestamped images ?. This only works on mp4 videos, and not on webm. The process of encoding to MP4 and converting back to webm results in very bad video quality and takes 3x time for each video.

    Along with the sequence of images, I am also writing the PTS of the original video for each frame in a timecodes.txt file. Are there any options in ffmpeg similar to mp4fpsmod (https://github.com/nu774/mp4fpsmod) ?
    I expect that when I dump block-wise timestamps in webm for original video and processed video, the PTS for each block match between the two.

  • streaming video is playing, when voice input enable the video change to silence,how to fix this bug ?

    18 avril 2015, par CrespoXiao

    Please check the image, I add the following code when voide input finish, but it doesn’t work. Once the voice input finish, the video would have sound after a short while, but sometimes not, don’t know why. Any solution ?

       /**
    *  back from other audio app or use voice input
    */
    - (void)enableAudio {
    //    AudioSessionInitialize(NULL, NULL, NULL, NULL);
    //    UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
    //    AudioSessionSetProperty(kAudioSessionProperty_AudioCategory,sizeof(sessionCategory),&sessionCategory);
    //    AudioSessionSetActive(YES);

       [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error: nil];
       [[AVAudioSession sharedInstance] setActive: YES error: nil];
    }