Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (29)

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

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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (4049)

  • Video recorded with ffmpeg not showing up at all in android (Oneplus 7T)

    15 juin 2021, par ppengy

    I'm trying to render a video using a program called "danser", which uses ffmpeg. The video comes out fine, but when I transfer the video to my phone to upload to a social media platform, the phone does not see the video at all. I've used USB and Google Drive to transfer videos. Videos uploaded to Discord show up fine, which I assume is because of compression. I can't use discord to transfer because the video is over 100MB limit. I've also tested it on BlueStacks and it doesn't show up either.

    


    Running ffmpeg with options: [-y -f rawvideo -vcodec rawvideo -s 1920x1080 -pix_fmt rgb24 -r 60 -i - -vf vflip -profile:v high -preset slow -an -vcodec h264_nvenc -color_range 1 -colorspace 1 -color_trc 1 -color_primaries 1 -movflags +write_colr -pix_fmt yuv420p -rc constqp -qp 18 videos\420eb0fce66c010c71553949ac611eeb.mp4]


    


    Is there anything i can change here that allows for better compatibility ? I can share some video examples too if you request.

    


        "Recording": {
        "FrameWidth": 1920,
        "FrameHeight": 1080,
        "FPS": 60,
        "Encoder": "h264_nvenc",
        "EncoderOptions": "-rc constqp -qp 18",
        "Profile": "high",
        "Preset": "slow",
        "PixelFormat": "yuv420p",
        "Filters": "",
        "AudioCodec": "aac",
        "AudioBitrate": "128k",
        "AudioFilters": "",
        "OutputDir": "videos",
        "Container": "mp4",
        "MotionBlur": {
            "Enabled": true,
            "OversampleMultiplier": 16,
            "BlendFrames": 24,
            "BlendWeights": {
                "UseManualWeights": false,
                "ManualWeights": "1 1.7 2.1 4.1 5",
                "AutoWeightsID": 27,
                "GaussWeightsMult": 1.5
            }
        }
    }
}


    


  • FFMPEG : Add video (partial video effect) under the image with ffmpeg

    6 décembre 2022, par Ashish Chaturvedi

    I have a video, video.mp4, and an image, artwork.png

    


    I would like, to use FFmpeg :

    


      

    • To display the video.mp4 effect inside the image artwork.png
    • 


    • If possible, resize output.mp4 as per the demo demo_output.mp4
    • 


    


    Is this possible ?

    


    Resources : https://www.dropbox.com/transfer/AAAAAGgUAt5aTw0W5DYH75y-CvJTKQUqxXatnMPNjHBxpz4DDiOH9IM

    


    Have tried :
ffmpeg -i video.mp4 -i artwork.jpg -filter_complex '[1:v][0:v]scale2ref[ckout][vid];[vid][ckout]blend=all_mode='lighten'[out]' -map '[out]' output.mp4

    


  • VLC libx264 streaming muxed as FLV

    24 mars 2012, par Jan Novák

    I have a question on streaming output of libx264. My scenario is that Iam capturing video from webcam, encoding with x264 and then streaming data to flash, muxed as FLV. For muxing, Im using output/flv_bitstream.h, included in libx264 budle. The only modification of muxer, that I made, is that instead of fwrite() im usig send() to transfer data via socket... Encoding library is working fine. If I save output (even muxed), vlc player is able to play it. But, when it goes to data transfer via socket, vlc and flash are not cooperating. The weird thig is, that if Im sending data to vlc player thru socket, it waits till transmission end and then plays video from buffer. But what I need is to play live stream.

    I also tryed to read flv file and send it to vlc of flash tag by tag and it is working fine.

    Any suggestions ?