Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (111)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (8222)

  • changing default h264 profile

    30 novembre 2013, par user2984969

    I need a video stream with main H264 profile. I try to encode it with such command :

    `ffmpeg -f mjpeg -use_wallclock_as_timestamps 1 -i  http://sourse/ -vcodec libx264 -profile:v main -vb 64k -preset veryfast -tune film -vsync 1 -f flv rtmp://ip_addres/rtmp/flow`

    It's ok, but how can I set this profile for default ? Because when I don't put put "-profile:v main" option ffprobe show high profile.

  • ffmpeg VBR -> CBR conversion and streaming of MPEG-2 TS video files

    26 juillet 2017, par Georgе Stoyanov

    I am trying to convert a source VBR SPTS MPEG-2 TS file into CBR using ffmpeg. The code I am using is the following :

    #!/bin/bash

    pkill ffmpeg

    ffmpeg \
           -re -i source.ts -c copy \
           -muxrate 18000K \
           -f mpegts \
           udp://destination_ip:1234?pkt_size=1316

    The source VPID bitrate is 10Mbps and the APID is 296Kbps. So according to my understanding this code should deliver 18Mbps CBR where the difference between the muxrate and the bitrate of all the PIDs is filled with null packets.

    The problem is that the output is far from perfect. The overall bitrate is semi-CBR at best. It ranges between 12Mbps and 15Mbps and I see a lot of PCR accuracy and PCR repetition errors along with CC errors both on the VPID and APID.

  • ffmpeg audio/video sync problems when uploading to WhatsApp

    11 janvier 2021, par Luke Collins

    (Note : I have looked at related questions such as this one, but the solutions there didn't work for me since presumably their output files wouldn't play correctly in mpv, whereas mine do.)

    


    I want to send a scene from a film to my friend on WhatsApp. I run

    


    


    ffmpeg -i film.mp4 -ss 00:25:30 -t 00:03:00 -c: copy out.mp4

    


    


    to extract the clip, which produces the file out.mp4 which plays fine when I play it with mpv.

    


    If instead, I play the file in my browser (firefox), the first frame is static for a couple of seconds while audio plays, until the video starts and the video and audio are both in sync. (In other words, it seems the file has additional unnecessary audio information appended to the beginning of the file, which starts before my desired clip when played in firefox).

    


    Diagrammatically, I suspect the video contains the following information :

    


    enter image description here

    


    and firefox plays it in this way :

    


    enter image description here

    


    What's worse is that when I upload it to WhatsApp, it misaligns the audio with the video, instead playing it this way :

    


    enter image description here

    


    How can I fix this so that the video has no additional video/audio information ?

    


    I appreciate any help with this.