Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (66)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6184)

  • lowest latency method to pass raw video frames from ffmpeg to gstreamer

    21 juillet 2021, par art vanderlay

    I would like to pass raw audio and video buffers from ffmpeg to gstreamer. For video a 1920x1080 25fps RGB output is what ffmpeg is producing.

    


    What is the best method to pass this from ffmpeg to gstreamer on the same hardware.

    


    The end goal is to not block either ffmpeg from outputting if gstreamer cannot take the frame and to not block gstreamer if no frames are available.

    


    For this we have looked at sockets and tcp/udp plugins. However if we get any buffering issues the gstreamer pipline will block until the buffer is clear/full.

    


    we will have multiple pairs of TX/RX running on same linux instance so stdI/O will not work.
Is there a current preferred method for this type of transfer ?

    


  • Why does x264 keep giving me "command not found" error on my Mac ? [closed]

    2 juillet 2021, par hd-dvd

    I just installed x264 via Homebrew on my Mac running MacOS 11.4 Big Sur. I'm trying to encode a video but I can't get x264 to run properly.

    


    This is the command I am running in the Terminal :

    


    x264 --bitrate 25000 --preset veryslow --bluray-compat --tune film --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 --keyint 30 --open-gop --slices 4 --fake-interlaced --colorprim "bt709" --transfer "bt709" --colormatrix "bt709" --sar 1:1 --pass 1 -o out.264 in.mp4

    


    and this is what it outputs :

    


    bash: x264 --bitrate 25000 --preset veryslow: command not found

    


    If I delete the --preset part then it just gets hung up on some other part, like --tune.

    


    I have tried brew doctor and there are no errors.

    


    If I just run x264 then it gives me x264 [error]: No input file. Run x264 --help for a list of options. so it seems as if x264 is installed. I don't know where to begin troubleshooting this but I'd like to get it to work.

    


    If I simplify the command way down to x264 -o out.264 in.mp4 then I get :

    


    avs [error]: failed to load avisynth
raw [error]: raw input requires a resolution.
x264 [error]: could not open input file `in.mp4' via any method!


    


    I would greatly appreciate some pointers on how to get this working.

    


  • 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
            }
        }
    }
}