Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (73)

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

  • Efficiently streaming a remote file into ffmpeg

    17 janvier 2016, par YZats

    My use case requires transcoding a remote MOV file that can’t be stored locally. I was hoping to use http protocol to stream the file into ffmpeg. This works, but I’m observing this to be a very expensive operation with (seemingly) redundant network traffic, so am looking for suggestions.

    What I see is that ffmpeg starts out with a Range request “0-“ (which brings in the entire file), followed by a number of open-ended requests (no ending offset) at different positions, each of which makes the http server return large chunks of the file again and again, from the starting position to the very end.

    For example, http range requests for a short 10MB file look like this :

    bytes=0-  
    bytes=10947419-
    bytes=36-
    bytes=3153008-
    bytes=5876422-

    Is there another input method that would be more network-efficient for my use case ? I control the server where the video file resides, so I’m flexible in what code runs there.

    Any help is greatly appreciated

  • Loading a remote file into ffmpeg efficiently

    17 janvier 2016, par YZats

    My use case requires transcoding a remote MOV file that can’t be stored locally. I was hoping to use http protocol to stream the file into ffmpeg. This works, but I’m observing this to be a very expensive operation with (seemingly) redundant network traffic, so am looking for suggestions.

    What I see is that ffmpeg starts out with a Range request “0-“ (which brings in the entire file), followed by a number of open-ended requests (no ending offset) at different positions, each of which makes the http server return large chunks of the file again and again, from the starting position to the very end.

    For example, http range requests for a short 10MB file look like this :

    bytes=0-  
    bytes=10947419-
    bytes=36-
    bytes=3153008-
    bytes=5876422-

    Is there another input method that would be more network-efficient for my use case ? I control the server where the video file resides, so I’m flexible in what code runs there.

    Any help is greatly appreciated

  • How to change volume of an audio AVPacket

    4 janvier 2013, par Saptarshi Biswas

    I have a desktop Qt-based application that fetches a sound stream from the network and plays it using QAudioOutput. I want to provide a volume control to the user so that he can reduce the volume. My code looks like this :

    float volume_control = get_user_pref(); // user provided volume level {0.0,1.0}

    for (;;) {
       AVPacket *retrieved_pkt = get_decoded_packet_stream();  // from network stream

       AVPacket *work_pkt
          = change_volume(retrieved_pkt, volume_control); // this is what I need

       // remaining code to play the work_pkt ...
    }

    How do I implement change_volume() or is there any off the shelf function that I can use ?

    Edit : Adding codec-related info as requested in the comments

    QAudioFormat format;
    format.setFrequency(44100);
    format.setChannels(2);
    format.setSampleSize(16);
    format.setCodec("audio/pcm");
    format.setByteOrder(QAudioFormat::LittleEndian);
    format.setSampleType(QAudioFormat::SignedInt);