
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (66)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12003)
-
avutil/log : Fix context pointer used for get_category()
30 avril 2013, par Michael Niedermayer -
libavutil/hwcontext_cuda : don't destroy external context when using current CUDA...
29 septembre 2023, par Roman Arzumanyan -
Manim Animation Rendering Fails on Google Cloud Run : Segment Combination Issues [closed]
28 juin, par Ahaskar KashyapProblem Summary


I'm running a Manim animation server on Google Cloud Run that successfully creates video segments but fails during the FFmpeg combination step. The behavior is inconsistent based on the number of segments created.


Environment


- 

- Platform : Google Cloud Run (8GB RAM, 4 CPU)
- Container : Debian 12 (bookworm) with Python 3.9.23
- FFmpeg : 5.1.6 (with h264 support enabled)
- Manim : Latest version with
-ql
(480p15) quality setting - Timeout : 240 seconds












Observed Behavior






 Animation Complexity 

Segments Created 

Final Video 

Status 







 Simple (2 segments) 

✅ Success 

✅ Created (7,681 bytes) 

❌ Reports "failed" 




 Complex (8+ segments) 

✅ Success 

❌ Not created 

❌ Actually fails 







Code Structure


# Manim command used
manim_cmd = [
 'manim', python_file, scene_class,
 '--media_dir', output_dir,
 '-ql', # Low quality (480p15)
 '--disable_caching',
 '--output_file', f"{output_filename}.mp4",
 '--verbosity', 'ERROR',
 '--progress_bar', 'none',
 '--write_to_movie'
]



Specific Issues


Issue 1 : False Negatives (Simple Animations)


- 

- What happens : Manim creates 2 segments successfully, FFmpeg combines them into final video
- Problem : Final video exists and is playable, but process reports "Manim failed (code 1)"
- Evidence : Can download the "failed" video via
/videos/filename.mp4
and it plays correctly








Issue 2 : Real Failures (Complex Animations)


- 

- What happens : Manim creates 8+ segments successfully
- Problem : FFmpeg combination step genuinely fails, no final video created
- Error : Process exits with code 1, only partial segments remain








Key Questions


- 

- Why does FFmpeg combination work for 2 segments but fail for 8+ segments ?
- Why does the same code work locally but fail on Cloud Run ?
- Is this a Cloud Run container limitation, FFmpeg configuration issue, or Manim-specific problem ?
- How can I debug FFmpeg combination failures in a containerized environment ?










File Structure (When Working)


/app/manim_animations/
└── animation_name/
 └── videos/
 └── animation_name_1234/
 └── 480p15/
 ├── partial_movie_files/
 │ └── SceneClass/
 │ ├── uncached_00000.mp4
 │ └── uncached_00001.mp4
 └── final_animation.mp4 # This gets created for 2 segments



Error Output


🔒 ISOLATED: Manim return code: 1
Manim failed (code 1): [stderr contains FFmpeg errors]



Has anyone encountered similar issues with Manim + FFmpeg on Cloud Run or other containerized environments ? Any insights into why segment count affects combination success would be greatly appreciated.


Investigation Results


What Works :


- 

- ✅ Local development (identical code works perfectly)
- ✅ FFmpeg installation (
ffmpeg -version
works, h264 encoders available) - ✅ Segment creation (all
uncached_*.mp4
files created with correct sizes) - ✅ Simple animations after container restart










What Doesn't Work :


- 

- ❌ Segment combination for 8+ segments
- ❌ Status detection for 2-segment animations
- ❌ Animations after multiple renders (resource accumulation ?)








Theories Tested :


- 

- Resource constraints : Upgraded to 16GB/8CPU - made things worse
- FFmpeg version : Upgraded 5.1.6→7.x - broke basic functionality
- File accumulation : Container restart helps temporarily
- Path detection : Isolation script may look in wrong directories