Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (70)

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

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8294)

  • build : Record explicit dependency of intrax8 on error resilience

    20 juin 2014, par Diego Biurrun
    build : Record explicit dependency of intrax8 on error resilience
    
    • [DBH] configure
  • Record and save a live video streaming in iOS

    25 décembre 2015, par Khushboo

    I am using dfurtsp player which is wrapper around ffmpeg player. I am able to play the live streaming successfully. Now I want to record the video as well. Please suggest me how to get started with the recording functionality.

    I have also searched other players which supports recording but didn’t find any. If anybody knows any other player which supports this please let me know.

  • ffmpeg : Stream, record and play my webcam

    12 avril 2013, par ChristophLSA

    I want to stream my webcam to a rtmp server. Also I want to record and save this to a local file (with better settings). This works and the command look like this :

    ffmpeg -f video4linux2 -i /dev/video2 -f pulse -i default \
     -r 20 -acodec copy -vcodec libx264 -threads 0 -s 720x480 recording-$(date +%d.%m.%Y-%H.%M.%S).mkv \
     -acodec libmp3lame -ab 64k -ar 44100 -vcodec libx264 -vpre my_ffpreset -threads 0 -f flv -s 320x240 rtmp://foo/bar

    Now I want to play my webcam to test the right angle, audio volume etc. What is the best way for doing this without a third (expensive) encoding ?

    I could play the stream but the latency is to high. Maybe I could create a ffserver and play the stream. Is there an option to record and stream with only one encoding process ? Any other solutions ?