Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (101)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (5685)

  • Usage FFmpeg command to capture video from Apple device camera and to get 3 outputs with different resolutions (UHD, FHD, HD)

    12 décembre 2019, par Levon Gharibyan

    I use mobile-FFmpeg to execute FFmpeg commands (https://github.com/tanersener/mobile-ffmpeg).

    I am using AVFoundation, and trying to get 3 output files (3840x2160, 1920x1080 and 1280x720) from device camera.
    Here is the command :

    -f videotoolbox -f avfoundation -video_size 3840x2160 -r 30 -pixel_format nv12 -i "0:0"  -c:v h264_videotoolbox -b:v 8M -maxrate 8M -s 3840x2160 output1/path -c:v h264_videotoolbox -b:v 8M -maxrate 8M -s 1920x1080 output2/path -c:v h264_videotoolbox -b:v 8M -maxrate 8M -s 1280x720 output3/path

    But the encoding process is very slow (0.3x-0.4x speed) with that command and as a result, I can’t record realtime 30fps outputs. What am I doing wrong ? All my tests were done on the iPhone 7.

  • FFMpeg - Segment audio to chunks

    8 mars 2015, par fr3sh

    I have tried this example in order to segment a given video file using ffmpeg into an m3u8 file and smaller chunks (.ts files). This actually worked great. Is it possible to do practically the same thing with audio input ?
    This was my most promising approach so far (capturing live audio on Windows OS) :

    ffmpeg -f dshow -i audio="<name of="of" input="input" device="device">" -acodec libmp3lame -ab 64000 | segmenter - 10 stream stream.m3u8 http:///stream/stream/ 5 1
    </name>

    But this returns this error :

    At least one output file must be specified.
    Could not open input file, make sure it is an mpegts file: -1

    I really would not know how to convert the live audio stream to an mpegts file.
    Could anyone please give me a hint ?

    Thanks a lot

  • iOS - How can I stream Encoded Video Frames(from AVFoundation and VideoToolBox) from device to server via RTP

    2 octobre 2015, par ASP Peek

    I am trying to stream live video from my iPhone device to server using RTP.
    Using AVFoundation’s AVCaptureVideoDataOutput, I was able to get CMSampleBuffer for video. I then feed these frames as they arrive into VideoToolBox’s VTCompressionSessionEncodeFrame() and is able to get Encoded CMSampleBuffer.

    Now to send these encoded Frames via RTP, I came across FFMPEG and found its built library for iOS device. (https://github.com/kewlbear/FFmpeg-iOS-build-script)

    However I am not able to find any iOS example or sample code or any documentation that explains the process of sending the encoded frames via RTP for iOS apps.

    Is there any existing example or documentation that can explain me how can I send the encoded CMSampleBuffers to server via RTP using FFMPEG.

    Thanks in Advance :)