Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (69)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (12079)

  • Close to a release version. Simplified flash detection, .swf_loaded for #sm2-container etc. New (exprimental ?) requiresFlash property, for when 100% HTML5-mode possible *but* RTMP support etc. is desired.

    23 janvier 2011, par Scott Schiller

    m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m script/soundmanager2-nodebug.js m script/soundmanager2.js Close to a release version. Simplified flash detection, .swf_loaded for #sm2-container etc. New (exprimental ?) requiresFlash property, for when 100% HTML5-mode (...)

  • FFMPEG how to record aac codec audio same time with wideo ?

    12 décembre 2017, par Gomi Odabaşıoğlu

    I am trying to use FFMPEG console tools effectively. Now I can record video and audio same time but my issue is audio is delaying. I use following code :

    C:\Users\gomid_000\Desktop\ffmpeg.exe -y -f dshow -i audio="Stereo Mix (Realtek High Definition Audio)" -f gdigrab -show_region 1 -framerate 60 -i desktop -map 0 -map 1 -c:v libx264 -preset ultrafast -pix_fmt yuv420p C:\Users\gomid_000\Desktop\out.mp4 -threads:1 4

    I do not know if I can automatically sync them together and prevent delay. Is it better to use AAC codec ? If it is how can I do that ?

  • Record UDP stream with ffmpeg video+klv-data

    26 septembre 2017, par mfreiholz

    I’d like to record an MPEGTS UDP stream with ffmpeg binary to disk.

    This works in a stable network :

    ffmpeg.exe -i "udp://224.10.10.10:15006?multicast=1&timeout=360000000&reuse=1" -f mpegts -map 0:0? -map 0:1? -map 0:2? -c copy "C:/test.ts"

    The entire stream is saved to test.ts.

    Live Environment

    In my live environment it is possible that the connection is very bad or is not available at all (cable disconnect, device reboot, ...) for a few minutes. I want ffmpeg to simply continue writing upcoming frames to *.ts file. I don’t need the lost frames.

    Currently the following errors appears, if there was a too long brake between UDP frames :

    [mpegts @ 00000000003cf920] Application provided invalid, non monotonically increasing dts to muxer in stream 1: 11606399 >= 2084534
    av_interleaved_write_frame(): Invalid argument

    It looks like to be a problem with the timestamp. My idea would be to tell FFMPEG to ignore those errors and simply continue.

    Is it even possible with the ffmpeg binary or do I have to solve the problem with a custom C/C++ implementation using the library ?

    Thank you

    Update 1

    If I only record the video stream -map 0:0? and not the others it seems to work. Looks like the problem is associated with the second stream (No.1) which is KLV encoded data.