Recherche avancée

Médias (91)

Autres articles (27)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Piping the output of ffmpeg directly to Audacity

    21 décembre 2020, par colin baguley

    I'm trying to make a 2 stage process into one CLI command.

    


    First :- I want to extract the audio from a video file

    


    Second :- I want to open up that audio file in Audacity

    


    On the command line at the moment I do this :-

    


    -ffmpeg -i inputfile.mp4 -vn sound.wav ;  audacity sound.wav

    


    which works but involves writing the sound.wav to my disc ( I don't want to keep sound.wav)

    


    It strikes me that it would be quicker if I could just pipe the ffmpeg output directly into audacity but I can't seem to work out how to do it.

    


    Yes - I know that using the GUI of Audacity I can just 'open' the mp4 directly into audacity but I would like to use a CLI command

    


    Thank you for your help ( and have a peaceful and joyful Christmas !)

    


  • ffmpeg with partial motion detection

    2 mars 2021, par Silentfury

    I have video files from a static surveillance camera and I try to re-encode them using some sort of motion detection filter (keeping the movements, droping the stills) in order to save space and play time.

    


    I have successfully tried the two below filter options but it still feels not good enough. :

    


      

    • mpdecimate e.g. -vf "mpdecimate=hi=6480:lo=6420:frac=0.1,setpts=N/(15*TB)"
    • 


    • select (e.g. -vf "select=gt(scene,0.4)")
    • 


    


    The main problem is a moving bush in the camera view, that I would like to exclude from the motion detection.

    


    Is there other/better ways of applying motion detection (and stills dropping) to ffmpeg ?
Is there any way to mask areas of the video that will be ignored in the above mentioned (or any other) motion detection filter/method ?

    


    Many thanks in advance !

    


    Edit :
in the mean time I found this excellent answer from Gyan

    


    I am testing this now but would still appreciate other ideas

    


  • CDN Stream Play Video + Audio With Referer ?

    30 avril 2020, par lavara123

    This is orginal site play script :

    



    

    

    const player = jwplayer("player").setup({
					title: "Extraction",
					description: "2020",
					file: "https://cdn.rapidvideocdn.xyz/videoplayback/1598e8ae991e78c6d87cf31b5e5db280be1012101221e017b1b20f8331f820fbh",
					tracks: [{"file":"https:\/\/sinefy.com\/subtitles\/tt8936646.tr.vtt","label":"T\u00fcrk\u00e7e","kind":"captions","default":true}],					image: "https://sinefy.com/uploads/series/cover/extraction-2020.jpg",					type: "application/vnd.apple.mpegurl",
					playbackRateControls: true,
					preload: "auto",
					autostart: autopl,
					hlshtml: true,
					androidhls: true,
					stagevideo: false,
					"primary": "html5"
				})

    


    


    




    this is HLS (Fragmented MP4) url open with referer :

    



    https://cdn.rapidvideocdn.xyz/videoplayback/1598e8ae991e78c6d87cf31b5e5db280be1012101221e017b1b20f8331f820fbh


    



    referer :

    



    https://sinefy.com/api/runner/80d4d32765c4d9466bf646958663f902


    



    i'm play code :

    



    ffmpeg -referer "https://sinefy.com/api/runner/80d4d32765c4d9466bf646958663f902" -i "https://e1-ad930d.rapidvideocdn.xyz/videoplayback/6d3d454e9fd30ac1a7ed678ff1d77e325" -f hls -vcodec libx264 -crf 27 -preset veryfast  -c:a copy - | ffplay -


    



    but no sound ?