Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (91)

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

  • Les sons

    15 mai 2013, par

Sur d’autres sites (6060)

  • I am a newbie in FFmpeg and I am trying to use FFMPEG to play RTSP stream on Android, but it will play slower and slower

    8 mai 2020, par Ajax

    I am a newbie in FFmpeg and I am trying to use FFMPEG to play RTSP stream on Android, but it will play slower and slower. The picture of my player and video source will increase with the time difference. The video are not synchronized. I'm pulling on the local area network。
The longer it is played, the more the picture of the video source will be. The more it cannot automatically return to the real-time picture like MediaCode's hardware decoding.The decoded picture is in slow motion, and it will freeze after a while.。What causes this ? How can i optimize it。
this is my code

    



    2020-5-8/Problem has been solved

    


  • dnn_backend_native_layer_conv2d.c : refine code.

    16 septembre 2020, par Xu Jun
    dnn_backend_native_layer_conv2d.c : refine code.
    

    Move thread area allocate out of thread function into
    main thread.

    Signed-off-by : Xu Jun <xujunzz@sjtu.edu.cn>

    • [DH] libavfilter/dnn/dnn_backend_native_layer_conv2d.c
  • Batch file : FOR loop not working to concatenate mp3 and mp4

    7 janvier 2023, par Ionut Bejinariu

    mp3list-1.txt contain the full patch to the mp3 files that will be concatenated

    &#xA;

    mp4list-1.txt contain full path to the mp4 files that will be concatenated

    &#xA;

    then both results mergedmp34.mp3 and mergeMp4.mp4 should be combined together in a final MP4 video file with a random name.

    &#xA;

    something I do wrong I don't understand what

    &#xA;

    my guess I do something wrong on FOR loop.

    &#xA;

    sometimes my .txt files contain full path to a single file mp4 or mp3

    &#xA;

    if don't have what to combine will concatenate 1 single file ?

    &#xA;

    set exportdir=&#xA;set batsource= the place where this batch file is&#xA;&#xA;1&lt; mp3list-1.txt 2&lt; mp4list-1.txt (&#xA;    FOR %%A in ("%batsource%") DO (&#xA;        set /p mp3list=" &lt;&amp;1&#xA;        set /p mp4list=" &lt;&amp;2&#xA;        ffmpeg -f concat -safe 0 -i "!mp3list!" -c copy mergedmp34.mp3&#xA;        ffmpeg -f concat -safe 0 -i "!mp4list!" -c copy mergeMp4.mp4&#xA;        ffmpeg -i mergedmp34.mp3 -i mergeMp4.mp4 -map 0:v -map 1:a -vcodec copy -c:a aac -b:a 320k "%exportdir%\%RANDOM%.mp4"&#xA;        del mergedmp34.mp3&#xA;        del mergeMp4.mp4&#xA; &#xA;         &#xA;    )&#xA;)&#xA;&#xA;

    &#xA;

    mp4list-1.txt

    &#xA;

    F:\.....Videos-115\output-mp4.txt&#xA;F:\....\Videos-1150\output-mp4.txt&#xA;F:\.....\Videos-1151\output-mp4.txt&#xA;F:\......Videos-1152\output-mp4.txt&#xA;

    &#xA;

    mp3list-1.txt

    &#xA;

    F:\......audio-52\output-mp3.txt&#xA;&#xA;

    &#xA;

    and .txt with direct files are like :

    &#xA;

    file &#x27;F:\....00OH7011.mp3&#x27;&#xA;file &#x27;F:\....00OH7011.mp3&#x27;&#xA;file &#x27;F:\....00OH7011.mp3&#x27;&#xA;

    &#xA;

    and for videos

    &#xA;

    file &#x27;F:\....00OH7011.mp4&#x27;&#xA;file &#x27;F:\....00OH7011.mp4&#x27;&#xA;file &#x27;F:\....00OH7011.mp4&#x27;&#xA;

    &#xA;

    Later Edit&#xA;basically, I want to adapt to my needs the above script based on this working script bellow where I have 4 txt files that are looped.

    &#xA;

    mkdir ".\Export"&#xA;set "sourcedir="  &#xA;set "outputdir=Export"&#xA;&#xA;1&lt; codfundal.txt 2&lt; fontalbum.txt 3&lt; album.txt 4&lt; artist.txt (for %%F in (*.jpg *.jpeg) do (&#xA;set /P "artist=" &lt;&amp;4 &#xA;set /P "fontalbum="&lt;&amp;2  &#xA;set /P "album=" &lt;&amp;3&#xA;set /P "codfundal=" &lt;&amp;1&#xA;   &#xA;   &#xA;   magick convert -gamma 1 -contrast 30 %%F -fill white -undercolor  "!codfundal!"  -gravity Center -font "!fontalbum!" -pointsize 215   -annotate &#x2B;0&#x2B;5  "!album!"  -gravity Center -pointsize 120 -font "Calibri-Bold" -annotate &#x2B;0&#x2B;220 "!artist!" -crop 1440x1440&#x2B;0&#x2B;0   -quality 92 "%outputdir%\%%F" &#xA;&#xA;&#xA;&#xA;&#xA;    )&#xA;)&#xA;

    &#xA;

    album.txt

    &#xA;

    Circumferential&#xA;Genealogy&#xA;Iraqi&#xA;Fitters&#xA;

    &#xA;

    artist.txt

    &#xA;

    Bhaskar Punk&#xA;Costas Fourie&#xA;Sonja Bryan&#xA;Jin Gullberg&#xA;&#xA;

    &#xA;

    codfundal.txt

    &#xA;

    &#xA;#E70E0E&#xA;#ff00ff&#xA;#993366&#xA;#99cc00&#xA;#cc99ff&#xA;

    &#xA;

    fontalbum.txt

    &#xA;

    Bauhaus-93&#xA;Agency-FB&#xA;Bernard-MT-Condensed&#xA;Bodoni-MT&#xA;

    &#xA;