Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (62)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9393)

  • Merge commit ’fc27e7272e6f1a7053812f8a15b1b7098de44c71’

    22 juillet 2014, par Michael Niedermayer
    Merge commit ’fc27e7272e6f1a7053812f8a15b1b7098de44c71’
    

    * commit ’fc27e7272e6f1a7053812f8a15b1b7098de44c71’ :
    mpegts : do not export empty language tags

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mpegts.c
  • Backslash in Ruby String and Special FFmpeg Characters

    26 novembre 2016, par valii2334

    I enter a string in my xcode project and I send it via api to my rails application where I need to put the string over a picture.

    Let’s say that in xcode (iOS app) I type the string /\%" ’ . The string it’s set in rails ( a field of an object of type string ) like this /\%\" ’ . But the problem is that in convert % and ’ are special characters and I need to prefix them with \ to work (like ruby does with " and \).
    The convert command it’s this :

    command = "convert image.jpg -gravity North -pointsize 40 -fill '#FFFFFF' -annotate +0+50 '#{@text}' image2.jpg"

    @text should contain a string such image2.jpg will contain /\%" ’

    This is just an example with this special characters. It should display any string entered in iOS no metter what language.

  • ffmpeg converting from flv to mp4 format video audio syncronization error

    14 mars 2014, par m0ntana

    I stream to RTMP server some video and audio in FLV format.
    Something like this.

    /usr/local/bin/ffmpeg -i udp://@239.100.100.205:1234?fifo_size=5000000&amp;overrun_nonfatal=1&amp;timeout=10 -vcodec libx264 -crf 21 -tune zerolatency -preset ultrafast -x264opts keyint=80 -vf yadif -c:a libfdk_aac -ac 2 -metadata:s:a:1 language=Original -f flv rtmp://192.168.2.95:1935/streams/Stream1

    And sometimes I need to record this stream. Somelike that :

    /usr/local/bin/ffmpeg -i rtmp://127.0.0.1/MLekrh/Stream1 -c copy -vsync 1 -async 1 /usr/local/tv/records/573d400689b059856f242ead16cf4152.mp4

    But whatever I do to ffmpeg parameters, there is no video/audio sync. Audio if faster. Please, if anybody knows what is wrong, help me ?

    Thank you.