Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (104)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • 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 ;

Sur d’autres sites (10905)

  • opus : add an option to toggle intensity stereo phase inversion

    4 décembre 2017, par Rostislav Pehlivanov
    opus : add an option to toggle intensity stereo phase inversion
    

    Due to a somewhat high volume of complains, phase inversion has
    been made optional with RFC8251. This allows for better bass
    frequency response when partially downmixing to play on systems
    with an LFE speaker.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/opus.h
    • [DH] libavcodec/opus_celt.c
    • [DH] libavcodec/opus_celt.h
    • [DH] libavcodec/opus_pvq.c
    • [DH] libavcodec/opusdec.c
  • Picking the Right Driver

    9 décembre 2011, par noreply@blogger.com (Anonymous)
  • Use ffmpeg to move moov atom to front of mp4 file on Google Cloud Platform and Google Cloud Storage

    19 avril 2021, par BlueBoy

    I would like to use ffmpeg to move the moov atom of a .mp4 file to the front of the file so that it can then be streamed.

    &#xA;

    The .mp4 file is in Google Cloud Storage. I want to take that file and apply the conversion on it (or copy it if needed).

    &#xA;

    I have successfully run the following command in the terminal and it works. I want to essentially run this command server side on the Google Cloud in a Java environment :

    &#xA;

    ffmpeg -i input_video_file.mp4 -vcodec copy -acodec copy -movflags faststart output_video_file.mp4

    &#xA;

    I can get my file from Google Cloud Storage like this :

    &#xA;

    GcsService gcsService = GcsServiceFactory.createGcsService();&#xA;GcsFilename file = new GcsFilename("bucket", "folder/filename;&#xA;

    &#xA;

    I was able to find a Java library wrapper for ffmpeg (https://github.com/bramp/ffmpeg-cli-wrapper) but it doesn't seem to allow to move the moov atom. Could anyone help me figure this out further ? Is there a

    &#xA;