Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (104)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (11814)

  • api-seek-test : first version

    31 juillet 2015, par Ludmila Glinskih
    api-seek-test : first version
    

    Works only with video stream.
    First pass without seeking — counts crcs of a frames and store it in an array.
    After that it seeks a lot in different places and checks if crcs of these frames and crcs of frames in array are the same.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/api/Makefile
    • [DH] tests/api/api-seek-test.c
    • [DH] tests/fate/api.mak
  • AS3 AIR FFMPEG netStream.seek issue

    14 novembre 2015, par AntBirch

    I’m having trouble with NetStream in AS3. The project I am working on allows users to browse a video (locally) and play it back. The issue I am having is that netStream.seek(0); from what I can tell it doesn’t do anything, although I get inside a NetStatusEvent function and NetStream.Seek.Notify is triggered. I’m using NativeProcess and the following function is this makes any difference.

    public function ProgressEventOutputHandler(e:ProgressEvent):void {
       videoByteArray = new ByteArray();
       nativeProcess.standardOutput.readBytes(videoByteArray, 0, nativeProcess.standardOutput.bytesAvailable);
       netStream.appendBytes(videoByteArray);
    }

    Am I missing something here ? I am pausing netStream before using netStream.seek(0);.

    EDIT :

    In an attempt to fix this issue I followed the instructions by VC.One I’ve done the following :

    • Moved videoByteArray = new ByteArray(); to my init function and also created tempVideoByteArray = new ByteArray(); in this function.

    • Update my ProgressEventOutputHandler function so that it no longer created a new ByteArray for videoByteArray and changed this line - nativeProcess.standardOutput.readBytes(videoByteArray, videoByteArray.length, nativeProcess.standardOutput.bytesAvailable);

    I have changed nothing else and now the video will not load. If I allow a new ByteArray to be created inside the ProgressEventOutputHandler function the video does load again.

  • avformat/mp3dec : Make MP3 seek fast

    1er septembre 2015, par Andy Wu
    avformat/mp3dec : Make MP3 seek fast
    

    When AVFMT_FLAG_FAST_SEEK is specified, make MP3 seek operation as
    fast as possible.

    When no "-usetoc" is specified, the default operation is using TOC
    if available ; otherwise, uses linear interpolation. This is useful
    when seeking a large MP3 file with no TOC available. One example is
    Podcast, many MP3 files are large, but no CBR/VBR tags. Most of
    them are actually CBR. Even in VBR cases, this option sacrifices the
    accuracy of playback time in exchange for responsiveness.

    • [DH] libavformat/mp3dec.c