
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (69)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (10729)
-
Extracting frames from a video created by muxing a bunch of images together is changing the integrity of the frames [closed]
13 mars 2023, par dreamersparadoxI am trying to transfer a bunch of images as a video. What I am doing is simply muxing these static images into a video using the following commands.



ffmpeg -framerate 1 -i %02d.jpg -codec copy 1.mkv




After this, I verify the integrity of my static images and the frames in the video using -



ffmpeg -i %02d.jpg -f framehash -




and



ffmpeg -i 1.mkv -map 0:v -f framehash -




I get the same hashes so it means I have archived the images properly. Now next I send this video to my friend who extracts the frames using -



ffmpeg -i 1.mkv mkv%02d.jpg 




Now after extracting the hashes don't remain the same that means the integrity is lost.



How to extract the frames as it is so that integrity is not lost ?



Also if you any other way to achieve what I am trying, please advice.



Here are the hashes.


-
How to convert raw H.264 stream from video call to mp4 file
13 février 2020, par DanielI have captured a SIP point to point video call using wireshark and I used the program ’videosnarf’ on Ubuntu 12.04 to extract the raw H.264 stream from the PCAP. I am having some problems with ffmpeg when trying to convert it to MP4. Below is the ffprobe output :
[STREAM]
index=0
codec_name=h264
codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
codec_type=video
codec_time_base=1/2400000
codec_tag_string=[0][0][0][0]
codec_tag=0x0000
width=704
height=396
has_b_frames=0
sample_aspect_ratio=1:1
display_aspect_ratio=16:9
pix_fmt=yuv420p
level=51
r_frame_rate=25/1
avg_frame_rate=25/1
time_base=1/1200000
start_time=N/A
duration=N/A
[/STREAM]Here is the command I used to generate the MP4 :
ffmpeg -f h264 -i H264-media-3.264 -vcodec copy output.mp4
When I transfer the file to my Windows PC, I can’t open the file in VLC. When opening in Windows Media Player (not sure the version but it’s on Windows 8) it plays but very quickly (almost as if it’s playing in fast forward. I also tried with :
ffmpeg -f h264 -i H264-media-3.264 -vcodec copy -r 25 output.mp4
I am able to play the raw H.264 stream using "MPC-HC" on Windows but I need it in MP4 format.
-
Output FFMPEG segments to GCS
28 janvier 2019, par TerrabyteIm trying to output an ffmpeg hls stream to google cloud storage after each segment is created or at least after the entire encoding is done. Doesn anyone know how to accomplish this ?
This is what i have in my bash script :
$FFMPEG -hide_banner -i "$infile" \
$PASSVAR \
-y \
-codec:v "$VIDEO_CODEC" \
-codec:a "$AUDIO_CODEC" \
-threads "$NUMTHREADS" \
-map 0:v \
-map 0:a \
-flags \
-global_header \
-f segment \
-segment_list "$playlist_name" \
-segment_time "$SEGLENGTH" \
-segment_format mpeg_ts \
-g "$key_frames_interval" \
-keyint_min "$key_frames_interval" \
$resolution \
$bitrate \
$FFMPEG_ADDITIONAL \
$FFMPEG_FLAGS \
"$OUTPUT_DIRECTORY/$output_name" | gsutil -m mv "$OUTPUT_DIRECTORY/$output_name" gs://bucket-vod-example
}does anyone know how to output the files to gsutls as it’s being encoded ? I can make the output the mounted storage point of google cloud storage but encoding directly to it is extremely slow so if possible is there way to encode locally then transfer as it’s being encoded ?