
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (87)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie 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 (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (11397)
-
moviepy ruining video after combining them
1er juin 2020, par jjakeryanI'm trying to make a program that downloads videos from TikTok and combines all the separate videos into one .mp4 file and moves the final video to a folder on my desktop. I've been able to make it download all the videos and when I watch the separate videos they play fine however when I combine the videos some of the videos are messed up and look like this but the audio is fine.



#slecting all .mp4 files
 video_files = glob.iglob("*.mp4")

 print(video_files)
 clips = []

 for clip in video_files: # For each mp4 file name
 clips.append(VideoFileClip(clip)) # Store them as a VideoFileClip and add to the clips list

 today = date.today()

 final = concatenate_videoclips(clips) # Concatenate the VideoFileClips
 final.write_videofile(f"{today}.mp4", codec="libx264")


#moving completed video to folder on desktop
 shutil.move(f'{today}.mp4', '/Users/jacobmarrandio/Desktop/done_videos/')




thanks for any help


-
combining videos more then 2 removes audio
24 août 2021, par user16739540when i combine image and video audio works. if i do more videos all audio goes away no audio.

ffmpeg -loop 1 -i "C:\Users\james\Desktop\video merge\gh.jpg" -t 6 -vcodec mpeg2video -s 1280x720 -acodec copy -f mpegts intro2.mp4 -y
ffmpeg -i intro2.mp4 -vcodec mpeg2video -s 1280x720 -q:v 1 -acodec copy -f mpegts intermediate1.mp4 -y
ffmpeg -i a.mp4 -vcodec mpeg2video -s 1280x720 -q:v 1 -acodec copy -f mpegts intermediate2.mp4 -y
ffmpeg -i b.mp4 -vcodec mpeg2video -s 1280x720 -q:v 1 -acodec copy -f mpegts intermediate3.mp4 -y
ffmpeg -i "concat:intermediate1.mp4|intermediate2.mp4|intermediate3.mp4" -c copy -bsf:a aac_adtstoasc output_done.mp4 -y



the image video does not contain audio that is fine as it is made from jpg or png.

but the other 2 video files has audio when i play it alone. issue happens when i concat it. no audio


-
bmp : add a standalone parser
6 août 2012, par Paul B Mahol