
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (98)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 -
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 (...)
Sur d’autres sites (5622)
-
avcodec/ppc/mpegvideo_altivec : Don't process coeffs as scalars
22 mars, par Andreas Rheinhardtavcodec/ppc/mpegvideo_altivec : Don't process coeffs as scalars
block_last_index and nCoeffs is an optimization designed
to avoid processing unnecessarily many coefficients ; yet
it would be legal to always process all coefficients
(all coefficients beyond nCoeffs are zero anyway and
zeros are always unquantized to zeros). Therefore
one does not need a scalar tail.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Why do I get different codecs on Windows and Linux with same code ?
27 janvier 2016, par user3277340I am using the API version of FFMPEG to generate a MP4 file from a series of images. I specify the output by calling
AVFormatContext *oc = NULL ;
avformat_alloc_output_context2 (&oc,NULL,"mp4",NULL) ;Running the exact same code on Windows and Linux I get different codecs assigned. On Windows, the value of oc->oformat->video_code is AV_CODEC_ID_H264 (28), but on Linux I get AV_CODEC_ID_MPEG4.
I tracked this down because on Windows my calls to avcodec_encode_video2(.,.,.,&got_packet) were always returning got_packet=0 so I never called av_interleaved_write_frame. I added a NULL AVFrame at the end to flush the video. But it was very small and did not contain the images I expected to see there.
But on Linux everything worked just fine. So I went ahead and manually changed the value of oc->oformat->video_code and I got the expected results.
My questions :
1) Why do I get different codec types on different platforms with the same code ? Is there a parameter I need to set to force MPEG4 ?
2) Is it "legal" to change this parameter after the call to avformat_alloc_output_context2 ? My concern is that "oc" has been properly initialized and, with the change, something may be inconsistent.
3) Is there a way to force the MPEG4 codec on any machine ?
Thanks.
-
Use popen with a relative or absolute path on Windows in C
9 juillet 2017, par TiwentyI’m trying to a GUI wrapper for FFmpeg. I decided to build my program around the binary instead of the libraries. I want to call ffmpeg.exe in parallel to my program and get the console output instantly to parse it and show to the user a progress bar or something.
So I found
popen
which sends me the output when it comes so I can do what I want with it. But there are some problems with paths inpopen
on Windows.When I try
ffmpeg.exe -i TEST.mkv TEST.mp4
(when I’m in the folder of both ffmpeg.exe and my source file either from start or a chdir) it works well and I get what I want.But when I do
bin/ffmpeg.exe -i TEST.mkv TEST.mp4
(with the executable obviously being in the
bin
folder) it doesn’t find the commandbin
:'bin' is not recognized as an internal or external command, operable program or batch file.
It also doesn’t work with quotation marks around the path :
"bin/ffmpeg.exe" -i TEST.mkv TEST.mp4
But it does work with an absolute path and quotation marks :
"C:/PATH/TO/USER/FFmpeg GUI/bin/ffmpeg.exe" -i jellyfish.mkv jellyfish.mp4
.But it gets funnier.
If I use relative paths for the source and output, it works.
"C:/Users/tibtw_000/Raccourci/Code/FFmpeg GUI/bin/ffmpeg.exe" -i videos/jellyfish.mkv videos/jellyfish.mp4
But if I want to put an absolute path to my source or output files, it now doesn’t work.
"C:/PATH/TO/USER/FFmpeg GUI/bin/ffmpeg.exe" -i "C:/PATH/TO/USER/FFmpeg GUI/videos/jellyfish.mkv"
and now returns
'C:/PATH/TO/USER/FFmpeg' is not recognized as an internal or external command, operable program or batch file.
Now I’m starting to wonder if the space in my path is at fault. And it was. When I use
C:/PATH/TO/USER/FFmpegGUI/bin/ffmpeg.exe -i C:/PATH/TO/USER/FFmpegGUI/videos/jellyfish.mkv C:/PATH/TO/USER/FFmpegGUI/videos/jellyfish.mp4
in popen everything works perfectly.So what should I do ? Do I force the user to not put his files in paths with spaces ? Is there a special character that I can put instead of a normal space in the path to make
popen
understand what I want it to do ?