
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (72)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (8230)
-
doc : remove file name from @file directive in Doxygen usage example
14 juillet 2011, par Diego Biurrundoc : remove file name from @file directive in Doxygen usage example
-
Finding file extension for media file using ffprobe
12 septembre 2013, par luddetI'm writing a media handling tool, using ffmpeg and ffprobe.
Part of the workflow consists of the application retreiving media files with nondescript extensionless file names.
Now I could get the extension from the media source but that would not fit as neatly into the program code flow, so I'm using ffprobe to extract the format information.The problem i have encountered is the format "QuickTime / MOV" where ffprobe gives me
format_name="mov,mp4,m4a,3gp,3g2,mj2"
Is there a way to know which of the extensions is most appropriate ?
I guess the simplest solution is to pick the first,
mov
, since that should work for all of them. But I would prefer to be more specific.Any way to accomplish this ?
-
Using ffmpeg with chunks of file
27 juin 2020, par YashikI am trying to download a file as 100mb chunks and I need to convert this using ffmpeg and upload this file to dropbox.
The code I tried :


import os
import requests

#---snip---#

for chunk in r.iter_content(chunksize=chunksize):
 #chunksize is 100mb
 fp = open("a.mp4","wb")
 fp.write(chunk)
 fp.close()
 os.system("ffmpeg -i a.mp4 a.mkv")
 
 #code for uploading



The error is
moov atom is not found


1.How can I convert file chunks with ffmpeg ?


2.Can I convert without ever needing to save to
a.mp4
, like givingchunk
directly to ffmpeg ?

Ps : The problem occurs with file size greater than 100mb


Edit :


After converting the file is appended to file in dropbox


What I want :


- 

- Sample.mp4 - 200mb
- Downloads file as chunks 100mb
- Converts the chunk
- Upload to drive (multipart)