
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (97)
-
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (10231)
-
how to install ffmpeg on localhost
25 mars 2014, par Paul LedgerThere is a lot of topics on this but after hours of reading i am still getting no where.
I have found a lot of issues wit this.- people have given links to files that no longer exist
- the help people have given refers to files that aren't included with the download
This is the nearest i have found
I followed this exactly, after finding a different version of the file broken link
version I found version available at sourceforge which isn't very helpful.
Steps as decribed :
- unzip
- copy ffmpeg.exe somewhere and remember the path for later use
- move php_ffmpeg.dll to php extension dir (usually c :\xampp\php\ext)
- move all other files to Windows\System32 (except COPYING.GPLv3.txt,
readme.txt) - add extension=php_ffmpeg.dll to php.ini (usually
c :\xampp\php\php.ini) - restart apache with fingers crossed questions/answers
http://www.apachefriends.org/f/viewtopic.php?f=16&t=41913
But when I restart apache I get the error :
The program can't because avcodec-51.dll is missing
AND
PHP startup : Unable to load dynamic libary php_ffmpeg.dll can't be found
The php_ffmpeg file is in the apache extention folder and has been declared in the php.ini file. I don't really change many settings in my php.ini file so I just put iy at the top of the extentions, if this is the problem please let me know.
extension=php_ffmpeg.dll <---first extention added
extension=php_bz2.dll <---- this was allready thereIf anybody knows an easy way to install this on a localhost I would really appropriate and if I'm having this much trouble on localhost should I bother trying to get this working on my lunix server.
(I am using xampp on windows and my lunix server is hosted through 1and1 - not my first choice but its for a friends site)
-
Mux ts segments to fragmented mp4 in realtime
10 avril 2021, par bsackI have an HLS stream which plays in the browser. What I want to do is have a URL like
/stream.mp4
that plays the livestream back as a fragmented mp4 from the current point in time. This way you could download the stream as a single file and it would work without any js dependencies.

The method I thought of is :


- 

- send an mp4 header
- wait for a new segment
- convert the segment into an mp4 fragment with
ffmpeg
- send the mp4 fragment
- go to 2.












(I know you can concatenate
.ts
segments but they don't play in Firefox.)

This answer describes how to create a fragmented mp4 when you have all the segments at hand (tl ;dr use
-movflags frag_keyframe+emptymoov
). But I want to do this on the fly so each new HLS segment is converted to an mp4 fragment as soon as it's created.

I think this is similar to what DASH does natively, where any chunk
chunk-$n.m4s
can be appended toinit.m4s
and it'll be a proper fragmented mp4. But can this be done without using DASH ?

How can I transmux a ts segment into an mp4 fragment ?


Edit : I found a way of doing what I wanted, but not through transmuxing mpegts segments to fmp4. It turns out that later versions of HLS do support fragmented mp4 (like DASH does), and FFmpeg provides the
-hls_segment_type fmp4
option for this.

-
Ask Help for Reproduce AccMPEG coded by Du Kuntai
30 novembre 2022, par censhallweHere is his github : https://github.com/KuntaiDu/AccMPEG
When I follow his steps to reproduce AccMPEG, I meet some problems. It's my first time to reproduce others' paper. When I set up the conda environment, the
conda_env.yml
has some pip errors and stop like picture1 :

PIC 1.

So I change its name toaccmpeg
(originally diff) and delete some code abouttorch/torchvision/torchaudio/detectron2
. After setup the environment, I rungenerate_mpeg_curve.py
and meet some errors like picture2 :

PIC 2.

Maybe I failed to setup the environment. And when I run batch_blackgen_roi.py, I meet some errors like these :

IMG 3.

I searchaccmpeg
and want to try to find solution from the Internet. But I don't get useful information. Therefore, I try to seek help. If you can give me a hand, I am very grateful.

If you can reproduce it well, please teach me how to operate. It's better if you have some useful pictures.Thanks very much !