Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (53)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8475)

  • FFMPEG .mov to png sequence alpha issue

    19 décembre 2014, par user2491598

    I have a .mov file that has alpha background. I am trying to convert the movie to .png sequence and the alpha in each png is not correct. Here is an example of the png result I get
    enter image description here

    However, the image is supposed to look like this
    enter image description here

    The ffmpeg command I use is the following

    ffmpeg -i  out.mov -vcodec png out_%05d.png

    Any thoughts why am I getting bad alpha channel ?

  • Revision 56e6c66b49 : Avoid division in intra prediction - Using multiplication and shifting instead

    13 février 2013, par Tero Rintaluoma

    Changed Paths : Modify /vp9/common/vp9_reconintra.c Avoid division in intra prediction - Using multiplication and shifting instead of division in intra prediction. - Maximum absolute difference is 1 for division statements in d45, d27, d63 prediction modes. However, errors can cumulate for large (...)

  • ffmpeg, random video-clip(s) not ending at the specified -to [value]

    21 mars 2023, par query-01

    Windows 10 Home, Version : 22H2

    


    ffmpeg version 2021-11-10-git-44c65c6cc0-full_build-www.gyan.dev

    


    The Issue : Within the .bat below, I randomly experience a video-clip that will not truncate/end —at the value entered for -to . That said, if I have four files joined, then output to —> output.mp4, at least one file will not end at the specified -to [value], yet the other adjoining clips will have complied with their specified -to [value].

    


    All of the video-clips are processed by the original system and remain un_touched —until this .bat (below).

    


    What am I doing incorrectly, and/or, what should I be looking for within the affected video-clip, that would cause this behavior ?

    


    Setlocal EnableDelayedExpansion
::"C:\Program Files\Bulk Rename Utility\Bulk Rename Utility.exe" %CD%
for /F "delims=" %%i in ('dir /B /O *.mp4') do (
set f=%%i
"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" "!f!"
set /p ss="Enter hh:mm:ss: "
set /p t="Enter Duration: "
ffmpeg -i "!f!" -ss !ss! -to !t!  -c:v copy -c:a aac _"!f!"

)

for /F "delims=" %%i in ('dir /B /O _*.mp4') do @echo file '%%i' >> clips.txt
set /p fn="Enter A Filename:"
ffmpeg -safe 0 -f concat -i clips.txt -c:v copy -c:a aac !fn!.mp4

)


    


    Respectfully