Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (78)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • 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" ;

Sur d’autres sites (9523)

  • How can I make sure trimming in ffmpeg with -c:v copy is accurate

    9 avril 2020, par Angelo

    I looked at many things online and I understand it's better to re-encode if you want precision.

    



    But for instance, I have the following command :

    



    -ss 00:00:09 -i "input.mp4" -c:v copy -c:a copy -vframes 600 "output.mp4


    



    Where 600 is calculated using the video's FPS and duration, in this case 10 seconds from an 60FPS video. Can I expect to get something accurate with this all the time ? I tested many variants but this seems to be doing ok for the couple videos I tested for.. And if not, can I really ever get complete ACCURACY with copying, or must I stick to H264 for instance ?

    


  • Extracting programs from dvb mux which begin later in stream

    28 novembre 2016, par John Allsup

    On DVB-T, some channels do not run 24h/day. If I save the entire mux using e.g. vlc (I do this on Windows due to Linux not liking my TV stick), I can play back the resulting .ts file with vlc, and select programs, and if I skip, say, 1hr in, and switch to the program (once started), I can watch it ok. If, however, I run ffmpeg on the file, it reports the program as having only one stream, of type ’Unknown : none’, and cannot extract the stream.

    The reasoning is that if I wish to capture the first program from a channel which comes on at, say, 7pm, I want the dump of the mux to begin before 7pm.

    Any thoughts on how to extract the program stream ?

  • how can i rotate text on video only without the video with ffmpeg commands

    13 juillet 2023, par Abdullah Mohamed

    I want to rotate the text only on the video
here is my code

    


    -i '/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/tmp/.video/1687332725.289482_IMG_0136.MOV' -filter_complex 'crop=1181.25:2100.0:1089.375:0.0,            drawtext=
              text=Abdullah Muhammad
              :fontsize=30
              :x=300
              :y=600
              :box=1
              :boxborderw=20
              :boxcolor=Gold
              ' -preset ultrafast -y '/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/Library/Caches/1687332725.289482_IMG_0136_1689171861232.mp4'


    


    what i have tried

    


    -i '/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/tmp/.video/1687332725.289482_IMG_0136.MOV' -filter_complex 'crop=1181.25:2100.0:1089.375:0.0,            drawtext=
              text=Abdullah Muhammad
              :fontsize=30
              :x=300
              :y=600
              :box=1
              :boxborderw=20
        :boxcolor=Gold
        ,rotate=PI/6
              ' -preset ultrafast -y '/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/Library/Caches/1687332725.289482_IMG_0136_1689171861232.mp4'


    


    expected result

    


    


    Text only to be rotated

    


    


    actual result

    


    


    Text and video are rotated